aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: bb9b3c80bd143d0ed39b36356ca69cd1d55c9f2c (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
32
33
34
{
    "markdown.extension.toc.levels": "1..3",
    "[javascript][json][jsonc]": {
        "editor.codeActionsOnSave": {
            "source.addMissingImports": "explicit",
            "source.organizeImports": "explicit",
            "source.fixAll.eslint": "explicit"
        },
    },
    "[typescript]": {
        "editor.codeActionsOnSave": {
            "source.addMissingImports": "never",
            "source.organizeImports": "never",
            "source.fixAll.eslint": "explicit"
        },
    },
    "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",
        "json",
        "jsonc"
    ],
    "files.eol": "\n",
    "files.trimTrailingWhitespace": true,
    "html-validate.validate": [
        "html"
    ]
}