proxy.py/.vscode/settings.json

33 lines
1020 B
JSON
Raw Normal View History

2021-11-19 19:55:05 +00:00
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
2021-11-19 19:55:05 +00:00
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.rulers": [100],
"python.testing.unittestEnabled": false,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests"],
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.ignorePatterns": [
".tox/**/*.py",
".vscode/*.py",
".venv*/**/*.py",
"venv*/**/*.py",
"docs/**/*.py",
"helper/**/*.py",
"menubar/**/*.py"
],
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": ["--generate-members"],
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.formatting.provider": "autopep8",
"typescript.format.semicolons": "remove",
"typescript.preferences.quoteStyle": "single",
"autoDocstring.docstringFormat": "sphinx"
}