mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* 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.
14 lines
349 B
INI
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
|