forked from asgardex/asgardex-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
30 lines (30 loc) · 811 Bytes
/
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
{
"files.associations": {
".electronbuildrc": "jsonc",
".eslintrc": "jsonc",
".prettierrc": "jsonc",
".stylelintrc": "json",
".huskyrc": "json",
".lintstagedrc": "json"
},
"typescript.tsdk": "./node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["typescript", "javascript"],
"prettier.requireConfig": true,
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.packageManager": "yarn",
"eslint.nodePath": "./node_modules/react-scripts/node_modules/",
"eslint.enable": true
}