forked from microsoft/azuredatastudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11,482 changed files
with
118,417 additions
and
254,639 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
"no-console": 0, | ||
"no-cond-assign": 0, | ||
"no-unused-vars": 1, | ||
"no-extra-semi": "warn", | ||
"semi": "warn" | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"licenseDetail" | ||
], | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the dependency" | ||
}, | ||
"licenseDetail": { | ||
"type": "array", | ||
"description": "The complete license text of the dependency", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"registrations": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"component": { | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"required": [ | ||
"type", | ||
"git" | ||
], | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"git" | ||
] | ||
}, | ||
"git": { | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"repositoryUrl", | ||
"commitHash" | ||
], | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"repositoryUrl": { | ||
"type": "string" | ||
}, | ||
"commitHash": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"required": [ | ||
"type", | ||
"npm" | ||
], | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"npm" | ||
] | ||
}, | ||
"npm": { | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"version" | ||
], | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"required": [ | ||
"type", | ||
"other" | ||
], | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"other" | ||
] | ||
}, | ||
"other": { | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"downloadUrl", | ||
"version" | ||
], | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"downloadUrl": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"repositoryUrl": { | ||
"type": "string", | ||
"description": "The git url of the component" | ||
}, | ||
"version": { | ||
"type": "string", | ||
"description": "The version of the component" | ||
}, | ||
"license": { | ||
"type": "string", | ||
"description": "The name of the license" | ||
}, | ||
"developmentDependency": { | ||
"type": "boolean", | ||
"description": "This component is inlined in the vscode repo and **is not shipped**." | ||
}, | ||
"isOnlyProductionDependency": { | ||
"type": "boolean", | ||
"description": "This component is shipped and **is not inlined in the vscode repo**." | ||
}, | ||
"licenseDetail": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"description": "The license text" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.