-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
74 lines (74 loc) · 1.87 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
72
73
74
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".husky": true,
".github": true,
"node_modules": true,
/* » FILES */
".editorconfig": true,
".eslintrc{,.json,.cjs}": true,
".eslintignore": true,
".gitattributes": true,
".gitconfig": true,
".gitignore": true,
".huskyrc": true,
".lintstagedrc{,.json}": true,
".npmignore": true,
".prettierignore": true,
".prettierrc{,.json}": true,
"commitlint.config{,.json,.cjs,.js}": true,
"forge.config.js": true,
".stylelintrc": true,
"LICENSE": true,
"LICENSE.md": true,
"jsdoc.config.json": true,
"package-lock.json": true,
"yarn.lock": true,
"README.md": true,
"vite.config.js": true
/**/
},
"files.associations": {
".babelrc": "jsonc",
".eslintrc": "jsonc",
".eslintrc.json": "jsonc",
".prettierrc": "jsonc",
".stylelintrc": "json",
".eslintignore": "ignore",
".prettierignore": "ignore",
".gitignore": "ignore",
".gitkeep": "markdown",
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/bazel-out": true,
"**/dist": true
},
"[markdown]": {
"editor.renderWhitespace": "all",
"editor.acceptSuggestionOnEnter": "smart",
"editor.parameterHints.enabled": true,
"editor.quickSuggestions": {
"comments": "inline",
"strings": "inline",
"other": "inline"
},
"editor.snippetSuggestions": "inline"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.formatOnSave": false,
"javascript.validate.enable": false,
"commentTranslate.targetLanguage": "en",
"commentTranslate.multiLineMerge": true,
"eslint.enable": true,
"eslint.run": "onType",
"eslint.options": {
"overrideConfigFile": ".eslintrc.json"
}
}