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
29 lines (29 loc) · 942 Bytes
/
settings.json
File metadata and controls
29 lines (29 loc) · 942 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
{
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8",
"python.testing.pytestArgs": [
"tests"
],
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black",
"python.formatting.blackArgs": [
"--line-length",
"120",
"--safe"
],
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "${workspaceFolder}/.venv/bin/mypy",
"isort.args": [
"--force-single-line-imports",
"--profile",
"black"
],
"files.trimTrailingWhitespace": true,
"json.format.enable": true,
"files.insertFinalNewline": true,
}