j40-cejst-2/data/data-pipeline/.flake8
Shaun Verch 4cec1bb37e
Install and run pandas-vet (#1119)
* Install and run pandas-vet

This doesn't fix the errors, but it can give us a starting point for the
discussion of which of these errors we care about.

* Ignore the errors for now

* Ignore eeoc.gov in link checker

Sometimes it seems down from the perspective of github actions.
2022-01-13 13:17:30 -05:00

14 lines
349 B
INI

[flake8]
ignore =
E266, # to many leading '#' for block comment
W503, # line break before binary operator
# TODO: Uncomment and fix the issues here that we care about, see
# https://github.com/usds/justice40-tool/issues/1123
PD002,
PD003,
PD004,
PD010,
PD901
max-line-length = 150
max-complexity = 18
select = B,C,E,F,W,T4,B9,PD