mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
35 lines
887 B
JSON
35 lines
887 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"python.pythonPath": "./env/bin/python3",
|
|
"python.formatting.provider": "black",
|
|
"python.sortImports.args": [
|
|
"-sp .isort.cfg"
|
|
],
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.testing.pytestArgs": [
|
|
"tests",
|
|
"--capture=sys"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.nosetestsEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"[html]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[yaml]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[sql]": {
|
|
"editor.formatOnSave": false
|
|
}
|
|
} |