Revision e2564461a790ddeb14b034f887725dab3c956c70 authored by Bryna Hazelton on 27 February 2020, 22:16:45 UTC, committed by Bryna Hazelton on 04 March 2020, 22:55:35 UTC
left API level shadowing for now, made issues to fix them.
1 parent d88f1dc
Raw File
setup.cfg
[metadata]
description-file = README.md

[aliases]
test=pytest

[tool:pytest]
addopts = --ignore=scripts

[flake8]
ignore = E501, W503
per-file-ignores =
    pyuvdata/tests/*.py: D
    pyuvdata/*/tests/*.py: D
    docs/*.py: D,A
    setup.py: D
# remove the following lines as they get converted to numpy style docstrings:
    pyuvdata/uvdata/aipy_extracts.py: D,A
    pyuvdata/uvbase.py: D
    pyuvdata/uvcal/uvcal.py: D
    pyuvdata/uvflag/uvflag.py: D,A
    pyuvdata/uvflag/test/test_uvflag.py: A
docstring-convention = numpy
select = C,E,W,T4,B9,F,D,A
# List of other checks to consider adding:
# move to a max line length rather than ignoring E501
# max-line-length = 88
# it's recommended to have max-complexity ~ 18
# max-complexity = 18
# flake8-quotes
# flake8-black
# flake8-eradicate
# pep8-naming
# flake8-isort
# flake8-rst-docstrings
# flake8-rst
# darglint
# flake8-copyright
# flake8-ownership
back to top