Skip to content

Instantly share code, notes, and snippets.

@anshulxyz
Last active November 11, 2021 21:43
Show Gist options
  • Save anshulxyz/485ac674666e031bae00fb475c3bc5c2 to your computer and use it in GitHub Desktop.
Save anshulxyz/485ac674666e031bae00fb475c3bc5c2 to your computer and use it in GitHub Desktop.
// python linting settings for vs code
{
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"--show-column-numbers",
"--strict"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment