-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
46 lines (46 loc) · 1.32 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
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"pnpm-lock.yaml": true
},
"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",
"*.css": "${capture}.css.map",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, TEMPLATE_LICENSE, .node-version, pnpm-workspace.yaml, LICENSE"
},
"twee3LanguageTools.storyformat.current": "sugarcube-2",
"files.associations": {
"*.css": "postcss"
},
"tailwindCSS.includeLanguages": {
"twee3-sugarcube-2": "html"
},
"emmet.includeLanguages": {
"postcss": "css",
"twee3-sugarcube-2": "html"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// formatter
"prettier.tabWidth": 2,
"prettier.semi": false,
"prettier.trailingComma": "es5",
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "auto",
"prettier.singleQuote": true,
"editor.formatOnSave": true,
}