forked from async-labs/saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
63 lines (63 loc) · 3.1 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
{
"window.zoomLevel": 0,
"files.autoSave": "afterDelay",
"git.enableSmartCommit": true,
"git.autofetch": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"search.exclude": {
"**/node_modules": true,
"**/production-server": true,
"**/lambda/src/api": true,
"**/.next": true,
"**/.coverage": true
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"eslint.enable": true,
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.workingDirectories": [
{ "directory": "./app", "changeProcessCWD": true },
{ "directory": "./api", "changeProcessCWD": true },
{ "directory": "./lambda", "changeProcessCWD": true },
{ "directory": "./book/1-end/app", "changeProcessCWD": true },
{ "directory": "./book/2-begin/app", "changeProcessCWD": true },
{ "directory": "./book/2-end/app", "changeProcessCWD": true },
{ "directory": "./book/3-begin/app", "changeProcessCWD": true },
{ "directory": "./book/3-end/app", "changeProcessCWD": true },
{ "directory": "./book/3-end/api", "changeProcessCWD": true },
{ "directory": "./book/4-begin/app", "changeProcessCWD": true },
{ "directory": "./book/4-begin/api", "changeProcessCWD": true },
{ "directory": "./book/4-end/app", "changeProcessCWD": true },
{ "directory": "./book/4-end/api", "changeProcessCWD": true },
{ "directory": "./book/5-begin/app", "changeProcessCWD": true },
{ "directory": "./book/5-begin/api", "changeProcessCWD": true },
{ "directory": "./book/5-end/app", "changeProcessCWD": true },
{ "directory": "./book/5-end/api", "changeProcessCWD": true },
{ "directory": "./book/6-begin/app", "changeProcessCWD": true },
{ "directory": "./book/6-begin/api", "changeProcessCWD": true },
{ "directory": "./book/6-end/app", "changeProcessCWD": true },
{ "directory": "./book/6-end/api", "changeProcessCWD": true },
{ "directory": "./book/7-begin/app", "changeProcessCWD": true },
{ "directory": "./book/7-begin/api", "changeProcessCWD": true },
{ "directory": "./book/7-end/app", "changeProcessCWD": true },
{ "directory": "./book/7-end/api", "changeProcessCWD": true },
{ "directory": "./book/8-begin/app", "changeProcessCWD": true },
{ "directory": "./book/8-begin/api", "changeProcessCWD": true },
{ "directory": "./book/8-end/app", "changeProcessCWD": true },
{ "directory": "./book/8-end/api", "changeProcessCWD": true },
{ "directory": "./book/9-begin/app", "changeProcessCWD": true },
{ "directory": "./book/9-begin/api", "changeProcessCWD": true },
{ "directory": "./book/9-end/app", "changeProcessCWD": true },
{ "directory": "./book/9-end/api", "changeProcessCWD": true },
{ "directory": "./book/10-begin/app", "changeProcessCWD": true },
{ "directory": "./book/10-begin/api", "changeProcessCWD": true },
{ "directory": "./book/10-end/app", "changeProcessCWD": true },
{ "directory": "./book/10-end/api", "changeProcessCWD": true },
]
}