blob: 0054bcab86965295312a3d5250b77a16c0791e69 (
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": "basic",
"ruff.organizeImports": true,
"ruff.importStrategy": "fromEnvironment",
"ruff.fixAll": true,
"ruff.run": "onType"
}
|