forked from enricofer/pickLayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
picklayer.code-workspace
43 lines (43 loc) · 1.27 KB
/
picklayer.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
43
{
"extensions": {
"recommendations": [
"editorconfig.editorconfig",
"mikestead.dotenv",
"ms-python.python",
"ms-python.mypy-type-checker",
"ms-python.black-formatter",
"ms-python.flake8",
"charliermarsh.ruff",
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"python.languageServer": "Pylance",
// Tests
"python.testing.pytestEnabled": true,
// Linting
"flake8.importStrategy": "fromEnvironment",
"ruff.importStrategy": "fromEnvironment",
"mypy-type-checker.importStrategy": "fromEnvironment",
// Formatting
"isort.check": false,
"black-formatter.importStrategy": "fromEnvironment",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter",
},
"files.associations": {
"*.ts": "xml"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
}
}