-
-
Save tpickle-py/bb763b57edc2392ba0d94df307645619 to your computer and use it in GitHub Desktop.
VSCode editor settings for black, flake8, html, python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "python.linting.pylintEnabled": false, | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.enabled": true, | |
| "python.formatting.provider": "black", | |
| "python.formatting.blackArgs": [ | |
| "--line-length", | |
| "88" | |
| ], | |
| "editor.formatOnSave": true, | |
| "[html]": { | |
| "editor.formatOnSave": false | |
| }, | |
| "[python]": { | |
| "editor.formatOnSave": true, | |
| }, | |
| "html.format.wrapLineLength": 0, | |
| "html.format.wrapAttributes": "aligned-multiple", | |
| "html.format.indentHandlebars": true, | |
| "html.format.preserveNewLines": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment