https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 5a6b3b64255c14d0bf05a705ccd915da08ba0944 authored by pre-commit-ci[bot] on 05 September 2022, 23:20:48 UTC, committed by Bryna Hazelton on 13 September 2022, 00:46:57 UTC
updates:
- [github.com/psf/black: 22.6.0 → 22.8.0](https://github.com/psf/black/compare/22.6.0...22.8.0)
1 parent eedb06f
Raw File
Tip revision: 5a6b3b64255c14d0bf05a705ccd915da08ba0944 authored by pre-commit-ci[bot] on 05 September 2022, 23:20:48 UTC
[pre-commit.ci] pre-commit autoupdate
Tip revision: 5a6b3b6
setup.cfg
[metadata]
description_file = README.md

[flake8]
ignore = W503, E203, N806
max-line-length = 88
per-file-ignores =
    pyuvdata/tests/*.py: D
    pyuvdata/*/tests/*.py: D
    docs/*.py: D,A
    setup.py: D
# remove the following lines as functions and input variables are renamed to pep8 style:
    pyuvdata/uvdata/uvdata.py: N802
    pyuvdata/uvbeam/mwa_beam.py: N802
    pyuvdata/utils.py: N802, N803
    pyuvdata/tests/test_utils.py: D,N802
    pyuvdata/tests/__init__.py: D,N802
docstring-convention = numpy
select = C,E,W,T4,B9,F,D,A,N,RST,B
# List of other checks to consider adding:
# it's recommended to have max-complexity ~ 18
# max-complexity = 18
# flake8-eradicate
# flake8-isort
# flake8-rst
# flake8-copyright
# flake8-ownership
back to top