1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 12:50:04 +08:00
SpaceVim/bundle/deoplete-jedi/setup.cfg
wsdjeg 459d676373 chore(jedi): use bundle deoplete_jedi
arty/typeshed/tests/stubtest_whitelists/py36.txt
2022-10-23 16:00:31 +08:00

15 lines
388 B
INI

[flake8]
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,tests/*,rplugin/python3/deoplete/vendored
filename = *.py
ignore =
# W503 line break before binary operator
W503,
# 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