mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-17 06:52:59 +00:00
25 lines
618 B
INI
25 lines
618 B
INI
[flake8]
|
|
# Ignore style and complexity
|
|
# E: style errors
|
|
# W: style warnings
|
|
# C: complexity
|
|
# F401: module imported but unused
|
|
# F403: import *
|
|
# F811: redefinition of unused `name` from line `N`
|
|
# F841: local variable assigned but never used
|
|
# E402: module level import not at top of file
|
|
# I100: Import statements are in the wrong order
|
|
# I101: Imported names are in the wrong order. Should be
|
|
ignore = E, C, W, F401, F403, F811, F841, E402, I100, I101, D400
|
|
builtins = c, get_config
|
|
exclude =
|
|
.cache,
|
|
.github,
|
|
docs,
|
|
jupyterhub/alembic*,
|
|
onbuild,
|
|
scripts,
|
|
share,
|
|
tools,
|
|
setup.py
|