Skip to content

Instantly share code, notes, and snippets.

@dorukusumezbas
dorukusumezbas / settings.json
Created April 6, 2021 21:15 — forked from nottrobin/settings.json
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,