mirror of
https://github.com/Paillat-dev/pycord-reactive-views.git
synced 2026-01-02 01:06:18 +00:00
30 lines
817 B
JSON
30 lines
817 B
JSON
|
|
{
|
||
|
|
"editor.formatOnSave": true,
|
||
|
|
"editor.formatOnPaste": true,
|
||
|
|
"files.trimTrailingWhitespace": true,
|
||
|
|
"files.autoSave": "onFocusChange",
|
||
|
|
"git.autofetch": true,
|
||
|
|
"[jsonc]": {
|
||
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||
|
|
},
|
||
|
|
"[python]": {
|
||
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
||
|
|
},
|
||
|
|
"python.defaultInterpreterPath": "/usr/local/bin/python",
|
||
|
|
"python.formatting.provider": "black",
|
||
|
|
"python.testing.unittestEnabled": false,
|
||
|
|
"python.testing.pytestEnabled": true,
|
||
|
|
"pylint.args": [
|
||
|
|
"--rcfile=pyproject.toml"
|
||
|
|
],
|
||
|
|
"black-formatter.args": [
|
||
|
|
"--config=pyproject.toml"
|
||
|
|
],
|
||
|
|
"flake8.args": [
|
||
|
|
"--toml-config=pyproject.toml"
|
||
|
|
],
|
||
|
|
"isort.args": [
|
||
|
|
"--settings-path=pyproject.toml"
|
||
|
|
]
|
||
|
|
}
|