-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
siapy-dev.code-workspace
63 lines (63 loc) · 1.8 KB
/
siapy-dev.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"files.autoSave": "afterDelay",
"python.languageServer": "Pylance",
"python.defaultInterpreterPath": ".venv/bin/python",
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
"python.analysis.typeCheckingMode": "standard",
"python.terminal.activateEnvironment": true,
"[python]": {
"editor.rulers": [
{
"column": 80,
"color": "#e2d8e21f"
},
{
"column": 100,
"color": "#e9b2b2c4"
}
],
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"editor.defaultFormatter": "charliermarsh.ruff",
},
"git.enableCommitSigning": true,
"git.autofetch": true,
"[git-commit]": {
"editor.rulers": [
50
]
},
"cSpell.language": "en",
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker",
"ms-python.isort",
"ms-python.pylint",
"charliermarsh.ruff",
"dchanco.vsc-invoke",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"aaron-bond.better-comments",
"njpwerner.autodocstring",
"EditorConfig.EditorConfig",
"ms-python.debugpy",
"sonarsource.sonarlint-vscode",
"eamodio.gitlens",
"github.vscode-codeql",
]
}
}