Last active
January 18, 2017 03:40
-
-
Save mjtorn/9870434 to your computer and use it in GitHub Desktop.
Using pylint with Syntastic for Vim makes it really slow. flake8 seems to catch the most relevant errors, but I like to disable some of them.
This file contains 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
# Accually is ~/.config/flake8 | |
[flake8] | |
max-line-length = 120 | |
# E265: The one about comments starting '# ' | |
# E127,E128: Errors about inline alignment | |
# W391: blank line at EOF. Of course you want a blank line there. | |
# F403: from foo import * is sometimes too useful$ | |
ignore = E265,E127,E128,W391,F403 | |
[isort] | |
multi_line_output = 2 | |
combine_star = true | |
combine_as = true | |
force_alphabetical_sort = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment