forked from csernazs/pytest-httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
35 lines (35 loc) · 906 Bytes
/
settings.json
File metadata and controls
35 lines (35 loc) · 906 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
33
34
35
{
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"python.testing.pytestArgs": [
"tests"
],
"editor.formatOnSave": true,
"isort.args": [
"--force-single-line-imports",
"--profile",
"black"
],
"files.trimTrailingWhitespace": true,
"json.format.enable": true,
"files.insertFinalNewline": true,
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"ruff.enable": true,
"ruff.codeAction.disableRuleComment": {
"enable": true
},
"ruff.codeAction.fixViolation": {
"enable": true
},
"ruff.organizeImports": true,
"ruff.path": [
".venv/bin/ruff"
],
"black-formatter.args": [
"--line-length=120",
"--safe"
]
}