forked from microsoft/fluentui-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
71 lines (71 loc) · 2.31 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
// Controls the rendering size of tabs in characters.
"editor.tabSize": 2,
// When opening a file, `editor.tabSize` and `editor.insertSpaces` will NOT be detected based on the file contents.
"editor.detectIndentation": false,
"editor.formatOnSave": true,
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": "all",
// Controls if the editor will insert spaces for tabs.
"editor.insertSpaces": true,
"files.exclude": {
"**/.cache": true,
"**/.git": true,
"**/.DS_Store": true,
"**/coverage": true,
"**/.eslintcache": true
},
"files.watcherExclude": {
"**/.git": true,
"**/node_modules": true,
"**/lib": true,
"**/lib-commonjs": true,
"**/lib-amd": true,
"**/temp": true,
"**/dist": true,
"**/dist-storybook": true,
"**/*.scss.ts": true,
"**/coverage": true
},
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
"search.exclude": {
".yarn/releases": true,
"**/node_modules": true,
"**/lib": true,
"**/lib-commonjs": true,
"**/dist": true,
"**/dist-storybook": true
},
"editor.rulers": [120],
"eslint.workingDirectories": [{ "mode": "auto" }], // infer working directory based on .eslintrc/package.json location
"files.associations": {
"CODEOWNERS": "ini"
},
"[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
},
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifierEnding": "index",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifierEnding": "index",
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.reportStyleChecksAsWarnings": false
}