Skip to content

Instantly share code, notes, and snippets.

@daviwesley
Last active February 26, 2020 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daviwesley/201181a9e1545393df0c377c4abcb84b to your computer and use it in GitHub Desktop.
Save daviwesley/201181a9e1545393df0c377c4abcb84b to your computer and use it in GitHub Desktop.
// just copy theses lines to your settings.json file in vscode
{
"python.sortImports.args": [
"--lines=120"
],
"python.linting.pylintEnabled": false,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=120",
"exclude=**/migrations/*.py"
],
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--disable=C0111",
"max-line-length=120"
],
"terminal.integrated.automationShell.linux": "/bin/zsh",
"editor.fontFamily": "Fira code",
"editor.fontLigatures": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment