-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsettings.json
30 lines (26 loc) · 944 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
{
"javascript.format.enable": false,
"typescript.format.enable": false,
"json.format.enable": false,
"js/ts.implicitProjectConfig.checkJs": false,
"css.validate": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": { "editor.defaultFormatter": "ms-python.black-formatter" },
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.preferTypeOnlyAutoImports": true,
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
"^(node:)?(console|util|test)$",
"^three/.*$"
],
"eslint.codeAction.disableRuleComment": { "location": "sameLine" },
"eslint.workingDirectories": [
{ "pattern": "./apps/*/" },
{ "pattern": "./packages/*/" }
]
}