Skip to content

Instantly share code, notes, and snippets.

@nottrobin
Created March 24, 2020 14:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nottrobin/f9c4e56fd1d008d5171f2f05d944d902 to your computer and use it in GitHub Desktop.
Save nottrobin/f9c4e56fd1d008d5171f2f05d944d902 to your computer and use it in GitHub Desktop.
VSCode editor settings for black, flake8, html
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"79"
],
"editor.formatOnSave": true,
"[html]": {
"editor.formatOnSave": false
},
"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