mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-08 08:34:18 -07:00
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.
This commit is contained in:
parent
73d6aa937d
commit
4cec1bb37e
3 changed files with 27 additions and 3 deletions
|
@ -1,7 +1,14 @@
|
|||
[flake8]
|
||||
ignore =
|
||||
E266, # to many leading '#' for block comment
|
||||
W503 # line break before binary operator
|
||||
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
|
||||
select = B,C,E,F,W,T4,B9,PD
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue