Last active
November 11, 2021 21:43
-
-
Save anshulxyz/485ac674666e031bae00fb475c3bc5c2 to your computer and use it in GitHub Desktop.
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
Show hidden characters
// 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