• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "files.insertFinalNewline": true,
3    "files.trimFinalNewlines": true,
4    "files.trimTrailingWhitespace": true,
5    "files.associations": {
6        ".pylintrc": "ini"
7    },
8    "python.testing.unittestEnabled": false,
9    "python.testing.nosetestsEnabled": false,
10    "python.testing.pytestEnabled": true,
11    "python.linting.pylintUseMinimalCheckers": false,
12    "[python]": {
13        "editor.rulers": [
14            80
15        ],
16        "editor.tabSize": 2,
17        "editor.formatOnSave": true,
18        "editor.detectIndentation": false
19    },
20    "python.formatting.provider": "black",
21    "python.formatting.blackPath": "pyink",
22    "files.watcherExclude": {
23        "**/.git/**": true
24    },
25    "files.exclude": {
26        "**/__pycache__": true,
27        "**/.pytest_cache": true,
28        "**/*.egg-info": true
29    }
30}
31