generated from microsoft/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ws_mgdapp.code-workspace
42 lines (42 loc) · 1.14 KB
/
ws_mgdapp.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"python.linting.lintOnSave": true,
"editor.trimAutoWhitespace": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--rcfile",
"../../src/.pylintrc"
],
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--config",
"../../src/tox.ini"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--config",
"../../src/black.toml"
],
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [
"--config-file",
"../../src/tox.ini"
],
"python.linting.banditEnabled": true,
"python.linting.banditArgs": [
"-r",
"--ini",
"../../src/tox.ini"
]
}
}