34 lines
855 B
JSON
34 lines
855 B
JSON
|
{
|
||
|
"editor.rulers": [
|
||
|
120
|
||
|
],
|
||
|
"editor.formatOnSave": true,
|
||
|
"python.formatting.provider": "black",
|
||
|
"python.linting.lintOnSave": true,
|
||
|
"python.linting.flake8Enabled": true,
|
||
|
"python.analysis.autoImportCompletions": false,
|
||
|
"python.sortImports.args": [
|
||
|
"--profile",
|
||
|
"black"
|
||
|
],
|
||
|
"[python]": {
|
||
|
"gitlens.codeLens.symbolScopes": [
|
||
|
"!Module"
|
||
|
],
|
||
|
"editor.wordBasedSuggestions": false,
|
||
|
"editor.codeActionsOnSave": {
|
||
|
"source.organizeImports": true
|
||
|
}
|
||
|
},
|
||
|
"files.exclude": {
|
||
|
"**/.git": true,
|
||
|
"**/.svn": true,
|
||
|
"**/.hg": true,
|
||
|
"**/CVS": true,
|
||
|
"**/.DS_Store": true,
|
||
|
"**/Thumbs.db": true,
|
||
|
"**/.venv/bin/*": true,
|
||
|
"**/.venv/lib": true,
|
||
|
},
|
||
|
"outline.showVariables": false,
|
||
|
}
|