|
4 | 4 | "source.fixAll": true, |
5 | 5 | "source.organizeImports": true |
6 | 6 | }, |
7 | | - "editor.defaultFormatter": "ms-python.black-formatter" |
| 7 | + "editor.defaultFormatter": "charliermarsh.ruff" |
8 | 8 | }, |
9 | 9 | "autoDocstring.startOnNewLine": true, |
10 | 10 | "beautify.language": { |
11 | 11 | "html": ["htm", "html", "django-html"] |
12 | 12 | }, |
13 | | - "black-formatter.args": ["--line-length=80"], |
14 | 13 | "editor.formatOnPaste": false, |
15 | 14 | "editor.formatOnSave": true, |
16 | 15 | "emmet.includeLanguages": { |
|
27 | 26 | }, |
28 | 27 | "files.eol": "\n", |
29 | 28 | "files.exclude": { |
| 29 | + "**/.cache": true, |
| 30 | + "**/.mypy_cache": true, |
| 31 | + "**/.pytest_cache": true, |
| 32 | + "**/.ruff_cache": true, |
30 | 33 | "**/__pycache__": true |
31 | 34 | }, |
32 | | - "flake8.args": ["--max-line-length=80"], |
33 | 35 | "git.alwaysSignOff": true, |
34 | 36 | "git.enableCommitSigning": true, |
35 | 37 | "html.format.indentHandlebars": true, |
36 | 38 | "html.format.templating": true, |
37 | | - "isort.args": ["--profile", "black", "--src=${workspaceFolder}"], |
38 | 39 | "material-icon-theme.languages.associations": { |
39 | 40 | "jinja-html": "django" |
40 | 41 | }, |
41 | | - "pylint.args": ["--load-plugins", "pylint-pydantic", "pylint-pytest"], |
| 42 | + "mypy-type-checker.importStrategy": "useBundled", |
| 43 | + "mypy-type-checker.reportingScope": "workspace", |
42 | 44 | "python.analysis.autoImportCompletions": true, |
43 | 45 | "python.analysis.autoImportUserSymbols": true, |
44 | 46 | "python.analysis.extraPaths": [], |
45 | 47 | "python.analysis.indexing": true, |
46 | 48 | "python.analysis.stubPath": "/home/seapagan/stubs", |
47 | | - "python.analysis.typeCheckingMode": "basic", |
| 49 | + "python.analysis.typeCheckingMode": "off", |
48 | 50 | "python.languageServer": "Pylance", |
49 | 51 | "python.pythonPath": "./.venv/bin/python", |
50 | 52 | "python.testing.pytestArgs": ["tests"], |
51 | 53 | "python.testing.pytestEnabled": true, |
52 | 54 | "python.testing.unittestEnabled": false, |
53 | | - "ruff.organizeImports": false |
| 55 | + "ruff.fixAll": false, |
| 56 | + "ruff.organizeImports": true, |
| 57 | + "mypy-type-checker.args": ["--strict"] |
54 | 58 | } |
0 commit comments