-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
28 lines (28 loc) · 1.05 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
{
"editor.tabSize": 2,
"editor.formatOnSave": true,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "$(capture).js, $(capture).*.ts, $(capture).*.js",
"*.js": "$(capture).js.map, $(capture).*.ts, $(capture).*.js",
"tsconfig.json": "tsconfig.*.json",
"Dockerfile": "docker-compose.yml, .dockerignore",
".env": "*.env",
"package.json": "pnpm-lock.yaml, .nvmrc, pnpm-workspace.yaml, .npmrc",
".eslintrc.*": ".eslintignore, .eslintcache",
".prettierrc": ".prettierignore",
".gitignore": ".gitattributes"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.tabSizing": "shrink",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.prettier": "explicit",
"source.fixAll.markdownlint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"material-icon-theme.activeIconPack": "nest",
"files.eol": "\n"
}