-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 949 Bytes
/
settings.json
File metadata and controls
32 lines (32 loc) · 949 Bytes
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
{
"files.exclude": {
"**/*.pyc": true,
"**/*.min.js": true,
"**/*.js.map": true,
"/static/": true,
"node_modules": true,
"htmlcov": true,
"build": true,
"*.log": true,
"*.egg-info": true,
"src/dispatch/static/dispatch/dist/": true
},
"editor.formatOnSave": true,
"search.followSymlinks": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"vetur.format.enable": false,
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "100"],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": ["--ignore=E24,W504", "--verbose"],
"python.testing.pytestEnabled": true,
"python.sortImports.args": ["--settings-path", "${workspaceFolder}/setup.cfg"],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": false
}
}
}