Skip to content

Instantly share code, notes, and snippets.

@mjtorn
Last active January 18, 2017 03:40
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjtorn/9870434 to your computer and use it in GitHub Desktop.
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.
# 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