-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 948 Bytes
/
settings.json
File metadata and controls
32 lines (32 loc) · 948 Bytes
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
{
"git.ignoreLimitWarning": true,
"typescript.tsdk": "./node_modules/typescript/lib",
"workbench.settings.openDefaultKeybindings": true,
"python.linting.pylintEnabled": false,
"C_Cpp.dimInactiveRegions": false,
"python.pythonPath": "/usr/bin/python",
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
// see https://dev.to/robertcoopercode/using-eslint-and-prettier-in-a-typescript-project-53jb
// "editor.formatOnSave": true,
// "[javascript]": {
// "editor.formatOnSave": false
// },
// "[javascriptreact]": {
// "editor.formatOnSave": false
// },
// "[typescript]": {
// "editor.formatOnSave": false
// },
// "[typescriptreact]": {
// "editor.formatOnSave": false
// }
}