aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 66e83d21f4a23cd499a5cbdd830011975efeb619 (plain)
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
{
    "markdown.extension.toc.levels": "1..3",
    "[javascript]": {
        "editor.codeActionsOnSave": {
            "source.addMissingImports": true,
            "source.organizeImports": true,
            "source.fixAll.eslint": true
        },
    },
    "[typescript]": {
        "editor.codeActionsOnSave": {
            "source.addMissingImports": false,
            "source.organizeImports": false,
            "source.fixAll.eslint": true
        },
    },
    "eslint.format.enable": true,
    "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
    "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
    "javascript.preferences.importModuleSpecifierEnding": "js",
    "editor.tabSize": 4,
    "editor.insertSpaces": true,
    "eslint.validate": [
        "javascript",
        "typescript"
    ],
    "files.eol": "\n",
    "html-validate.validate": [
        "html"
    ]
}