2021-11-19 19:55:05 +00:00
|
|
|
{
|
2021-11-19 23:26:21 +00:00
|
|
|
"editor.rulers": [100],
|
2021-11-19 22:08:26 +00:00
|
|
|
"editor.formatOnSaveMode": "modifications",
|
2021-11-19 23:26:21 +00:00
|
|
|
"editor.formatOnSave": true,
|
2021-11-19 19:55:05 +00:00
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll": true
|
|
|
|
},
|
2021-11-19 23:26:21 +00:00
|
|
|
"[yaml]": {
|
|
|
|
"editor.insertSpaces": true,
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
"editor.autoIndent": "advanced",
|
|
|
|
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
|
|
|
|
},
|
|
|
|
"[typescript]": {
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
|
|
|
|
},
|
|
|
|
"typescript.format.semicolons": "remove",
|
|
|
|
"typescript.preferences.quoteStyle": "single",
|
|
|
|
"[python]": {
|
|
|
|
"editor.wordBasedSuggestions": true,
|
2021-11-20 14:12:38 +00:00
|
|
|
"editor.defaultFormatter": null
|
2021-11-19 23:26:21 +00:00
|
|
|
},
|
2021-11-19 19:55:05 +00:00
|
|
|
"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",
|
2022-01-01 07:06:27 +00:00
|
|
|
"helper/**/*.py"
|
2021-11-19 19:55:05 +00:00
|
|
|
],
|
|
|
|
"python.linting.pylintEnabled": true,
|
|
|
|
"python.linting.pylintArgs": ["--generate-members"],
|
|
|
|
"python.linting.flake8Enabled": true,
|
2021-11-23 09:32:00 +00:00
|
|
|
"python.linting.flake8Args": ["--config", ".flake8"],
|
2021-11-19 19:55:05 +00:00
|
|
|
"python.linting.mypyEnabled": true,
|
|
|
|
"python.formatting.provider": "autopep8",
|
|
|
|
"autoDocstring.docstringFormat": "sphinx"
|
|
|
|
}
|