Skip to content

Commit

Permalink
Fix flake8 config to work with flake8 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaldogsbody authored Nov 27, 2022
1 parent cbca254 commit c381f3a
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,23 @@ docstring-convention = google
import-order-style = pep8
max-complexity = 10
ignore =
D100 # Missing docstring in public module
D101 # Missing docstring in public class
D102 # Missing docstring in public method
D103 # Missing docstring in public function
D104 # Missing docstring in public package
D105 # Missing docstring in magic method
D106 # Missing docstring in public nested class
D107 # Missing docstring in __init__
E501 # Line too long
F722 # syntax error in forward annotation
# Missing docstring in public module
D100
# Missing docstring in public class
D101
# Missing docstring in public method
D102
# Missing docstring in public function
D103
# Missing docstring in public package
D104
# Missing docstring in magic method
D105
# Missing docstring in public nested class
D106
# Missing docstring in __init__
D107
# Line too long
E501
# syntax error in forward annotation
F722

0 comments on commit c381f3a

Please sign in to comment.