Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Commit 015e447

Browse files
committed
Migrate VSCode settings to workspace-level configuration
1 parent 3408a3e commit 015e447

File tree

3 files changed

+71
-37
lines changed

3 files changed

+71
-37
lines changed

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ exclude =
2222
.venv,
2323
.cache,
2424
dist,
25+
coverage,
2526

2627
extend-ignore = E203,E701,E402
2728

.vscode/settings.json

Lines changed: 0 additions & 37 deletions
This file was deleted.

clusterium.code-workspace

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {
8+
"git.enableSmartCommit": true,
9+
10+
"makefile.configureOnOpen": false,
11+
12+
"python.analysis.typeCheckingMode": "basic",
13+
"python.testing.pytestArgs": [
14+
"tests"
15+
],
16+
"python.testing.unittestEnabled": false,
17+
"python.testing.pytestEnabled": true,
18+
19+
"[python]": {
20+
"editor.defaultFormatter": "ms-python.black-formatter",
21+
"editor.formatOnSave": true,
22+
"editor.formatOnType": true,
23+
"editor.codeActionsOnSave": {
24+
"source.organizeImports": "explicit"
25+
}
26+
},
27+
"isort.args": [
28+
"--profile",
29+
"black",
30+
"--python-version",
31+
"auto"
32+
],
33+
34+
"black-formatter.args": [
35+
"--target-version",
36+
"py312",
37+
"--line-length",
38+
"88"
39+
],
40+
"editor.codeActionsOnSave": {
41+
"source.organizeImports": "explicit"
42+
},
43+
"isort.check": true,
44+
"isort.importStrategy": "fromEnvironment",
45+
46+
"flake8.path": ["${interpreter}", "-m", "flake8"],
47+
"flake8.args": [
48+
"--max-line-length",
49+
"88",
50+
"--max-complexity",
51+
"10",
52+
"--statistics",
53+
"--show-source",
54+
"--exclude",
55+
"__pycache__,.poetry,.pytest_cache,.venv,.cache,dist,coverage",
56+
"--ignore",
57+
"E203,E701,E402"
58+
]
59+
},
60+
"extensions": {
61+
"recommendations": [
62+
"ms-python.python",
63+
"ms-python.vscode-pylance",
64+
"ms-python.black-formatter",
65+
"ms-python.isort",
66+
"ms-python.flake8",
67+
"elagil.pre-commit-helper"
68+
]
69+
}
70+
}

0 commit comments

Comments
 (0)