|
2 | 2 | "debug.internalConsoleOptions": "neverOpen",
|
3 | 3 | "python.terminal.activateEnvironment": true,
|
4 | 4 | "python.defaultInterpreterPath": "/workspaces/app/.venv/bin/python",
|
5 |
| - "python.linting.pylamaEnabled": true, |
6 |
| - "python.linting.pylamaPath": "/workspaces/app/.venv/bin/pylama", |
| 5 | + "python.linting.enabled": true, |
| 6 | + // "python.linting.pylamaEnabled": true, |
| 7 | + // "python.linting.pylamaPath": "/workspaces/app/.venv/bin/pylama", |
7 | 8 | "python.linting.mypyEnabled": true,
|
8 | 9 | "python.linting.mypyPath": "/workspaces/app/.venv/bin/mypy",
|
9 | 10 | "python.linting.mypyArgs": [],
|
10 | 11 | "python.linting.pylintEnabled": true,
|
11 | 12 | "python.linting.pylintPath": "/workspaces/app/.venv/bin/pylint",
|
12 | 13 | "python.linting.flake8Enabled": true,
|
13 | 14 | "python.linting.flake8Path": "/workspaces/app/.venv/bin/flake8",
|
14 |
| - "python.linting.enabled": true, |
15 | 15 | "python.formatting.provider": "yapf",
|
16 | 16 | "python.formatting.yapfPath": "/workspaces/app/.venv/bin/yapf",
|
| 17 | + // "python.linting.flake8Enabled": false, |
| 18 | + // "python.linting.flake8Path": "/workspaces/app/.venv/bin/flake8", |
| 19 | + // "python.formatting.provider": "black", |
| 20 | + // "python.formatting.blackPath": "/workspaces/app/.venv/bin/black", |
| 21 | + // "editor.formatOnSaveMode": "file", |
17 | 22 | "editor.formatOnSave": true,
|
18 | 23 | "files.trimTrailingWhitespace": true,
|
19 | 24 | "files.trimFinalNewlines": true,
|
|
22 | 27 | "files.exclude": {
|
23 | 28 | "**/__pycache__": true,
|
24 | 29 | "**/.mypy_cache": true,
|
25 |
| - "**/.venv": true |
| 30 | + "**/.venv": true, |
| 31 | + "**/.pytest_cache": true |
26 | 32 | },
|
27 | 33 | "python.analysis.typeCheckingMode": "strict",
|
28 | 34 | "python.analysis.importFormat": "absolute",
|
|
34 | 40 | "python.languageServer": "Pylance",
|
35 | 41 | "python.analysis.exclude": [
|
36 | 42 | "**/.venv"
|
| 43 | + ], |
| 44 | + "docwriter.style": "Google", |
| 45 | + "python.testing.pytestArgs": [ |
| 46 | + "tests" |
| 47 | + ], |
| 48 | + "python.testing.unittestEnabled": false, |
| 49 | + "python.testing.pytestEnabled": true, |
| 50 | + "python.createEnvironment.contentButton": "hide", |
| 51 | + "python.linting.maxNumberOfProblems": 50, |
| 52 | + "cSpell.words": [ |
| 53 | + "dataframe", |
| 54 | + "dataframes", |
| 55 | + "dropna", |
| 56 | + "isin", |
| 57 | + "iterrows", |
| 58 | + "yapf" |
| 59 | + ], |
| 60 | + "files.autoSaveDelay": 120000, |
| 61 | + "cSpell.maxDuplicateProblems": 2, |
| 62 | + "cSpell.maxNumberOfProblems": 25, |
| 63 | + "cSpell.ignorePaths": [ |
| 64 | + "package-lock.json", |
| 65 | + "node_modules", |
| 66 | + "vscode-extension", |
| 67 | + ".git/objects", |
| 68 | + ".vscode", |
| 69 | + ".vscode-insiders", |
| 70 | + ".devcontainer" |
37 | 71 | ]
|
38 | 72 | }
|
0 commit comments