summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: caa87ba4a558039eafcb1b194485d890e34f2fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "files.trimTrailingWhitespace": true,
    "editor.tabSize": 4,
    "editor.insertSpaces": true,
    "files.insertFinalNewline": true,
    "files.eol": "\n",
    # https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers
    "files.associations": {
        "*.xml.i": "xml",
        "*.xml.in": "xml",
        "*.j2": "jinja",
    },
    "editor.indentSize": "tabSize",
    "[jinja]": {
        "editor.tabSize": 4,
        "editor.wordBasedSuggestions": false
    }
}