kemono2/client/.vscode/settings.json
2024-07-04 22:08:17 +02:00

32 lines
697 B
JSON

{
"files.exclude": {
"node_modules": true
},
// this option does work and is required for emmet in jinja to work
"files.associations": {
"*.html": "jinja-html"
},
"emmet.includeLanguages": {
"jinja-html": "html"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dev": true,
"**/dist": true
},
"javascript.preferences.importModuleSpecifierEnding": "js",
"javascript.preferences.quoteStyle": "double",
"javascript.format.semicolons": "insert",
"[jinja-html]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.tabSize": 2
},
"[scss]": {
"editor.tabSize": 2
}
}