forked from microsoft/fluentui-react-native
-
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.
Integrate dependency checker into CI and fix dependency errors (micro…
…soft#392) * add depcheck command to repo * fix more dependencies * fix dependency errors * fix last few dependency issues * more dependency fixes and integrate into buildci * workaround depcheck bad report * Change files * add prettier and extension updates to (hopefully) ensure consistency * fix bad merge * Change files
- Loading branch information
Showing
117 changed files
with
918 additions
and
316 deletions.
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,9 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,26 +1,65 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.detectIndentation": false, | ||
"editor.trimAutoWhitespace": true, | ||
"editor.insertSpaces": true, | ||
"editor.tabSize": 2, | ||
|
||
"eslint.enable": true, | ||
"eslint.workingDirectories": [{ "mode": "auto" }], // infer working directory based on .eslintrc/package.json location | ||
|
||
"files.trimTrailingWhitespace": true, | ||
"json.format.enable": false, | ||
"javascript.preferences.quoteStyle": "single", | ||
"typescript.preferences.quoteStyle": "single", | ||
"[handlebars]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"files.associations": { | ||
"**/package.json.hbs": "json", | ||
"**/*.json.hbs": "jsonc", | ||
"**/README.md.hbs": "markdown" | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/lib": true | ||
}, | ||
"files.exclude": { | ||
"**/lib-amd": true, | ||
"**/lib-commonjs": true | ||
}, | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true, | ||
"**/node_modules/**": true, | ||
"**/.hg/store/**": true, | ||
"**/lib": true, | ||
"**/lib-commonjs": true, | ||
"**/lib-amd": true | ||
}, | ||
|
||
"javascript.preferences.quoteStyle": "single", | ||
|
||
"json.format.enable": false, | ||
|
||
"typescript.preferences.quoteStyle": "single", | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, | ||
"typescript.tsdk": "./node_modules/typescript/lib", | ||
|
||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/lib": true, | ||
"**/lib-amd": true, | ||
"**/lib-commonjs": true, | ||
"**/dist": true | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[handlebars]": { | ||
"editor.formatOnSave": false | ||
} | ||
} |
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
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
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.