|
| 1 | +{ |
| 2 | + "[python]": { |
| 3 | + "diffEditor.ignoreTrimWhitespace": true, |
| 4 | + "editor.detectIndentation": false, |
| 5 | + "editor.tabSize": 4, |
| 6 | + "editor.wordBasedSuggestions": "off", |
| 7 | + "gitlens.codeLens.symbolScopes": [ |
| 8 | + "!Module" |
| 9 | + ], |
| 10 | + "editor.codeActionsOnSave": { |
| 11 | + "source.organizeImports.ruff": "always" |
| 12 | + }, |
| 13 | + "editor.formatOnSave": true, |
| 14 | + "editor.defaultFormatter": "charliermarsh.ruff" |
| 15 | + }, |
| 16 | + "editor.renderControlCharacters": true, |
| 17 | + "editor.renderFinalNewline": "dimmed", |
| 18 | + "editor.renderWhitespace": "none", |
| 19 | + "editor.rulers": [ |
| 20 | + 80, |
| 21 | + 110 |
| 22 | + ], |
| 23 | + "files.associations": { |
| 24 | + "*.env": "properties" |
| 25 | + }, |
| 26 | + "files.encoding": "utf8", |
| 27 | + "files.eol": "\n", |
| 28 | + "files.insertFinalNewline": true, |
| 29 | + "files.trimFinalNewlines": true, |
| 30 | + "files.trimTrailingWhitespace": true, |
| 31 | + "python.envFile": "${workspaceFolder}/.env", |
| 32 | + "python.languageServer": "Default", |
| 33 | + "python.terminal.activateEnvironment": true, |
| 34 | + "python.testing.autoTestDiscoverOnSaveEnabled": true, |
| 35 | + "python.testing.pytestArgs": [ |
| 36 | + "tests" |
| 37 | + ], |
| 38 | + "python.testing.pytestEnabled": true, |
| 39 | + "python.testing.unittestEnabled": false, |
| 40 | + "search.exclude": { |
| 41 | + "**/.pytest_cache": false, |
| 42 | + "**/.venv": false, |
| 43 | + "**/__pycache__": false, |
| 44 | + "**/output": false |
| 45 | + }, |
| 46 | + "testing.gutterEnabled": true |
| 47 | +} |
0 commit comments