summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: e8f3a96651793d500c0ae9466d4f128dddbc8adb (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
35
36
37
38
39
40
41
42
{
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.linting.enabled": true,
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/node_modueles": true,
        "**/__pycache__": true,
        "**/*.egg-info": true
    },
    "editor.codeActionsOnSave": {
      "source.fixAll": true
    },
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
       {
         "language": "vue",
         "autoFix": true
       },
       {
         "language": "html",
         "autoFix": true
       },
       {
         "language": "javascript",
         "autoFix": true
       },
       {
         "language": "typescript",
         "autoFix": true
       }
     ],
     "vetur.format.defaultFormatter.js": "vscode-typescript",
     "vetur.format.defaultFormatter.html": "js-beautify-html",
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "python.pythonPath": "/usr/bin/python3.6",
    "restructuredtext.confPath": "${workspaceFolder}/docs"
}