forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathsettings.json
More file actions
47 lines (47 loc) · 1.59 KB
/
Copy pathsettings.json
File metadata and controls
47 lines (47 loc) · 1.59 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
39
40
41
42
43
44
45
46
47
{
"editor.tabSize": 2,
"files.associations": {
"**/data/**/*.txt": "cactbot-timeline"
},
"files.exclude": {
".git": true,
"**/__pycache__": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"pylint.args": ["--errors-only"],
"black-formatter.args": ["--line-length", "100"],
"search.exclude": {
"**/node_modules": true,
"dist/**": true
},
"[javascript]": {
"editor.defaultFormatter": "dprint.dprint"
},
"[typescript]": {
"editor.defaultFormatter": "dprint.dprint"
},
"typescript.tsdk": "node_modules/typescript/lib",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"package.json": ".npmrc,package-lock.json, yarn.lock,.editorconfig,.eslintrc.cjs,.markdownlint.yml,.mocharc.cjs",
"tsconfig.json": "tsconfig.*.json",
".gitignore": ".gitattributes",
"README.md": "CONTRIBUTING.md,CODE_OF_CONDUCT.md,LICENSE"
},
"explorer.experimental.fileNesting.enabled": true,
"explorer.experimental.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"package.json": ".npmrc,package-lock.json, yarn.lock,.editorconfig,.eslintrc.cjs,.markdownlint.yml,.mocharc.cjs",
"tsconfig.json": "tsconfig.*.json",
".gitignore": ".gitattributes",
"README.md": "CONTRIBUTING.md,CODE_OF_CONDUCT.md,LICENSE"
}
}