mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 01:54:09 +00:00
20 lines
376 B
INI
20 lines
376 B
INI
[flake8]
|
|
# Ignore style and complexity
|
|
# E: style errors
|
|
# W: style warnings
|
|
# C: complexity
|
|
# D: docstring warnings (unused pydocstyle extension)
|
|
# F841: local variable assigned but never used
|
|
ignore = E, C, W, D, F841
|
|
builtins = c, get_config
|
|
exclude =
|
|
.cache,
|
|
.github,
|
|
docs,
|
|
jupyterhub/alembic*,
|
|
onbuild,
|
|
scripts,
|
|
share,
|
|
tools,
|
|
setup.py
|