-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.json
More file actions
51 lines (51 loc) · 1.32 KB
/
settings.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"[bat]": {
"files.encoding": "cp850",
},
"editor.rulers": [
88
],
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.hypothesis": true,
"**/*.pyc": true,
"**/*.pyo": true,
"**/*.pyd": true,
".venv": true
},
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"python.defaultInterpreterPath": "${env:PPSTACK_PYTHONEXE}",
"editor.formatOnSave": true,
"python.analysis.autoFormatStrings": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "pytest",
"python.testing.pytestArgs": [
"plotpy"
],
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
},
"files.associations": {
"vector": "cpp",
"utility": "cpp",
"algorithm": "cpp",
"complex": "cpp",
"memory": "cpp",
"optional": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"system_error": "cpp",
"type_traits": "cpp",
"xlocmon": "cpp",
"xmemory": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xutility": "cpp"
},
}