[flake8]
# E203: whitespace before ':'
# E402: module level import not at top of file
# E501: line too longa
# E722: Do not use bare except, specify exception instead
# W503: Line break occurred before a binary operator
# E101: indentation contains mixed spaces and tabs
# W191: indentation contains tabs
extend-ignore = E203, E501, E722, B950, W503, E101, W191
select = C,E,F,W,T,B,B9,I
per-file-ignores =
    src/module_qc_analysis_tools/cli/*: B008
