forked from realpython/reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
27 lines (27 loc) · 735 Bytes
/
settings.json
File metadata and controls
27 lines (27 loc) · 735 Bytes
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
{
"editor.formatOnSave": true,
"editor.mouseWheelZoom": true,
"editor.formatOnSaveMode": "file",
"editor.wrappingIndent": "same",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "standard",
"python.analysis.fixAll": [
"source.unusedImports"
],
"python.analysis.completeFunctionParens": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
},
"ruff.nativeServer": "off",
"ruff.lint.enable": true,
"ruff.lint.run": "onSave",
"files.exclude": {
".ruff_cache": true
}
}