Skip to content

Commit

Permalink
Disable buggy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 8, 2024
1 parent c3ea6b1 commit fa4ab88
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ ignore-paths:
- geoportal/c2cgeoportal_geoportal/scaffolds
- docker/qgisserver

pycodestyle:
disable:
# Buggy checks with Python 3.12
- W604 # backticks are deprecated, use 'repr()'
- W603 # '<>' is deprecated, use '!='
- E702 # multiple statements on one line (semicolon)
- E713 # test for membership should be 'not in'

pydocstyle:
disable:
- D102 # Missing docstring in public method
Expand Down

0 comments on commit fa4ab88

Please sign in to comment.