blob: 1adbc18860b76fcdd87b0319486c3d2a10e59080 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.rulers": [88, 120]
},
"black-formatter.importStrategy": "fromEnvironment",
"python.analysis.typeCheckingMode": "off",
"ruff.organizeImports": true,
"ruff.importStrategy": "fromEnvironment",
"ruff.fixAll": true,
"ruff.run": "onType"
}
|