-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 870 Bytes
/
settings.json
File metadata and controls
32 lines (32 loc) · 870 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
28
29
30
31
32
{
"[bat]": {
"files.encoding": "cp850"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[restructuredtext]": {
"editor.wordWrap": "on"
},
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit"
},
"editor.formatOnSave": true,
"editor.rulers": [
88
],
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/*.pyo": true,
"**/*.pyd": true
},
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"python.analysis.autoFormatStrings": true,
"python.testing.pytestArgs": [],
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "pytest",
"python.testing.unittestEnabled": false,
"terminal.integrated.tabs.description": "${workspaceFolder}",
}