dotfiles/vim/plugins/deoplete-jedi/setup.cfg

19 lines
551 B
INI
Raw Normal View History

2018-04-05 13:06:54 +02:00
[flake8]
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,tests/*,rplugin/python3/deoplete/vendored
filename = *.py
ignore =
# E226: missing whitespace around arithmetic operator
E226,
# E305: expected 2 blank lines after class or function definition, found 0
E305,
# E402: module level import not at top of file
E402,
# H301: one import per line
H301,
# H304: No relative imports
H304,
# H306: imports not in alphabetical order - conflicts with isort ordering
H306
max-line-length = 99
max-complexity = 20