[flake8]
# Rule definitions: http://flake8.pycqa.org/en/latest/user/error-codes.html
# D203: 1 blank line required before class docstring
# W503: line break before binary operator
# W504: line break after binary operator
# F401: file imported but not used
# F841: local variable is assigned to but never used
exclude = __pycache__,node_modules,.git,.pytest_cache,docs
ignore = D203,W503,W504,F401
max-complexity = 24
max-line-length = 120
per-file-ignores =
    codonPython/tests/file_utils_test.py:F841