forked from SUNRUSE/junk-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
36 lines (36 loc) · 947 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
31
32
33
34
35
36
{
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.rulers": [
80
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[typescript]": {
"editor.formatOnSave": false
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"typescript.tsdk": "node_modules\\typescript\\lib",
"files.exclude": {
"node_modules": true,
"src/engine/tsconfig.json": true,
"src/games/*/tsconfig.json": true,
"src/games/*/.eslintrc.json": true,
"src/games/*/src/.declarations.ts": true,
"dist": true,
"**/*.js": true
},
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"eslint.workingDirectories": [
"src/engine",
"src/games/tower-of-hanoi",
"src/pipeline"
]
}