forked from devcontainers/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
38 lines (38 loc) · 1.02 KB
/
settings.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"git.ignoreLimitWarning": true,
"search.exclude": {
"dist": true
},
"js/ts.tsc.autoDetect": "off",
"eslint.options": {
"rulePaths": [
"./build/eslint"
]
},
"mochaExplorer.files": "src/test/**/*.test.ts",
"mochaExplorer.require": "ts-node/register",
"mochaExplorer.env": {
"TS_NODE_PROJECT": "src/test/tsconfig.json"
},
"files.associations": {
"devcontainer-features.json": "jsonc"
},
"js/ts.tsdk.path": "node_modules/typescript/lib",
"git.branchProtection": [
"main",
"release/*"
],
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"editor.insertSpaces": false,
"[json]": {
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.defaultFormatter": "vscode.json-language-features"
}
}