nopaque/.vscode/settings.json

25 lines
524 B
JSON
Raw Normal View History

{
"editor.rulers": [79],
2024-11-07 09:51:35 +00:00
"editor.tabSize": 4,
2024-11-21 10:22:46 +00:00
"emmet.includeLanguages": {
"jinja-html": "html"
},
"files.associations": {
".flaskenv": "env",
"*.env.tpl": "env",
"*.txt.j2": "jinja"
},
"files.insertFinalNewline": true,
2024-08-01 09:59:50 +00:00
"files.trimFinalNewlines": true,
2024-11-07 09:51:35 +00:00
"files.trimTrailingWhitespace": true,
2024-11-21 10:22:46 +00:00
"[html]": {
"editor.tabSize": 2
},
2024-11-07 09:51:35 +00:00
"[javascript]": {
2024-11-21 10:22:46 +00:00
"editor.tabSize": 2
},
"[jinja-html]": {
"editor.tabSize": 2
2024-11-07 09:51:35 +00:00
}
}