aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 9120218b40762d82ba3edc00e43a8d1fd6b8b6c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "eslint.options": {},
    "eslint.validate": ["javascript", "typescript"],
    "editor.tabSize": 2,
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
    "javascript.format.insertSpaceAfterConstructor": true,
    "typescript.format.insertSpaceAfterConstructor": true,
    "[typescript]": {
        "editor.formatOnSave": true
    },
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
    },
    "typescript.tsdk": "node_modules/typescript/lib",
    "i18n-ally.localesPaths": ["src/i18n"]
}