-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
47 lines (47 loc) · 1.18 KB
/
settings.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"git.mergeEditor": true,
"editor.rulers": [
120
],
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"files.trimTrailingWhitespace": true,
"files.exclude": {
".coverage": true,
".gitattributes": true,
".gitignore": true,
".idea": true,
".mypy_cache": true,
".mypy.ini": true,
"*.egg-info": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"coverage.xml": true,
"htmlcov": true,
"venv": true,
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.diagnosticSeverityOverrides": {
"reportPrivateUsage": "information",
},
"black-formatter.args": [
"--line-length=120"
],
"[json]": {
"editor.formatOnSave": true
},
"mypy.targets": [
// Required by dmypy - otherwise mypy has an error in vscode
"--follow-imports=normal",
"."
]
}