https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision b512e84e1d1b0973702369ce7a1aba3a8bae1e90 authored by Josh Dillon on 29 January 2022, 18:57:59 UTC, committed by Bryna Hazelton on 01 February 2022, 19:02:18 UTC
This reverts commit 7deeac3d9a1d6f80b0527be6b8d8f9c6042b62a2.
1 parent d5bb2c5
Raw File
Tip revision: b512e84e1d1b0973702369ce7a1aba3a8bae1e90 authored by Josh Dillon on 29 January 2022, 18:57:59 UTC
Revert "add time_atol to UVFlag.to_waterfall"
Tip revision: b512e84
setup.cfg
[metadata]
description-file = README.md

[tool:pytest]
addopts = --ignore=scripts -n auto --dist=loadfile

[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
# darglint # This currently doesn't support numpy docstring style, should keep an eye on it
# flake8-copyright
# flake8-ownership
back to top