[flake8]
select = A,B,C,E,F,W,T4,B9,RST,D,N,I
ignore =
    E203
    E266
    E501
    W503
    F403
    F401
    N803  # Naming upper/lowercase -- too hard right now.
    N806  # Naming upper/lowercase -- too hard right now.
    N802  # Naming upper/lowercase -- too hard right now.
    D401  # Docstring in imperative mood. This should *not* be the case for @property's, but can't ignore them atm.
max-line-length = 88
max-complexity = 21
docstring-convention=numpy
ignore-decorators=click.option
per-file-ignores =
    tests/*:D
    src/py21cmfast/cli.py:D
rst-roles =
    class
    func
    mod
    data
    const
    meth
    attr
    exc
    obj
rst-directives =
    note
    warning
    versionadded
    versionchanged
    deprecated
    seealso
