Spaces:
Running
Running
mattoofahad
commited on
Commit
•
bc3c799
1
Parent(s):
f79cf2d
adding my vs code config file
Browse files- .vscode/settings.json +34 -0
.vscode/settings.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"[python]": {
|
3 |
+
"editor.formatOnSave": true,
|
4 |
+
"editor.defaultFormatter": "charliermarsh.ruff",
|
5 |
+
"editor.defaultFoldingRangeProvider": "charliermarsh.ruff",
|
6 |
+
|
7 |
+
"editor.codeActionsOnSave": {
|
8 |
+
"source.organizeImports.ruff": "always",
|
9 |
+
"source.unusedImports": "explicit"
|
10 |
+
}
|
11 |
+
},
|
12 |
+
"python.analysis.typeCheckingMode": "standard",
|
13 |
+
"ruff.lineLength": 79,
|
14 |
+
"editor.inlineSuggest.enabled": true,
|
15 |
+
"errorLens.onSave": true,
|
16 |
+
|
17 |
+
"pylint.args": ["--disable=missing-docstring"],
|
18 |
+
"flake8.args": ["--ignore=E501", "--radon-max-cc=10"],
|
19 |
+
|
20 |
+
"editor.rulers": [
|
21 |
+
{
|
22 |
+
"color": "#079c0f",
|
23 |
+
"column": 79
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"color": "#079c95",
|
27 |
+
"column": 99
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"color": "#9c0707",
|
31 |
+
"column": 119
|
32 |
+
}
|
33 |
+
]
|
34 |
+
}
|