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
17 lines (17 loc) · 741 Bytes
/
settings.json
File metadata and controls
17 lines (17 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"python.pythonPath": "${workspaceFolder}/.venv/bin/python3",
"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",
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "120", "--safe"],
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "${workspaceFolder}/.venv/bin/mypy",
"python.sortImports.args": ["--force-single-line-imports", "--profile", "black"]
}