|
14 | 14 | "customizations": { |
15 | 15 | // Configure properties specific to VS Code. |
16 | 16 | "vscode": { |
17 | | - "settings": {}, |
| 17 | + "settings": { |
| 18 | + "[python]": { |
| 19 | + "editor.wordBasedSuggestions": false, |
| 20 | + "editor.defaultFormatter": null, |
| 21 | + "editor.formatOnPaste": true, |
| 22 | + "editor.formatOnSave": true |
| 23 | + }, |
| 24 | + // "python.defaultInterpreterPath": "/usr/local/bin/python", |
| 25 | + "python.linting.enabled": true, |
| 26 | + "python.linting.pylintEnabled": true, |
| 27 | + "python.formatting.autopep8Path": "/usr/local/python/bin/autopep8", |
| 28 | + "python.formatting.blackPath": "/usr/local/python/bin/black", |
| 29 | + "python.formatting.yapfPath": "/usr/local/python/bin/yapf", |
| 30 | + "python.formatting.provider": "black", |
| 31 | + "python.linting.banditPath": "/usr/local/python/bin/bandit", |
| 32 | + "python.linting.flake8Path": "/usr/local/python/bin/flake8", |
| 33 | + "python.linting.mypyPath": "/usr/local/python/bin/mypy", |
| 34 | + "python.linting.pycodestylePath": "/usr/local/python/bin/pycodestyle", |
| 35 | + "python.linting.pydocstylePath": "/usr/local/python/bin/pydocstyle", |
| 36 | + "python.linting.pylintPath": "/usr/local/python/bin/pylint", |
| 37 | + "isort.path": [ |
| 38 | + "/usr/local/python/bin/isort" |
| 39 | + ] |
| 40 | + }, |
18 | 41 | "extensions": [ |
19 | | - "ms-python.python" |
| 42 | + "ms-python.python", |
| 43 | + "ms-python.isort" |
20 | 44 | ] |
21 | 45 | // "devPort": {} |
22 | 46 | } |
|
0 commit comments