@@ -51,27 +51,32 @@ lint =
5151 black ==22.3.0; implementation_name == "cpython"
5252 flake8-spellcheck>=0.24,<0.25
5353 flake8-docstrings>=1.6,<2
54- flake8>=3.9,<4
54+ flake8>=5,<=6
55+ pep8-naming ==0.13.3
56+ fname8>=0.0.3
5557
5658[flake8]
5759dictionaries =en_US,python,technical
5860docstring-convention = all
59- extend-ignore =
60- E203 # Ignore: Whitespace before ':'
61- D107 # Ignore: Missing docstring in __init__
62- D200 # Ignore: One-line docstring should fit on one line with quotes
63- D203 # Ignore: 1 blank line required before class docstring
64- D205 # Ignore: blank line required between summary line and description
65- D212 # Ignore: Multi-line docstring summary should start at the first line
66- D400 # Ignore: First line should end with a period
67- D401 # Ignore: First line should be in imperative mood
68- D410 # Ignore: Missing blank line after section
69- D411 # Ignore: Missing blank line before section
70- D412 # Ignore: No blank lines allowed between a section header and its content
71- D413 # Ignore: Missing blank line after last section
72- D414 # Ignore: Section has no content
73- D415 # Ignore: First line should end with a period, question mark, or exclamation point
74- D416 # Ignore: Section name should end with a colon
61+ extend-ignore = E203, D107, D200, D203, D205,
62+ D212, D400, D401, D410, D411, D412, D413,
63+ D414, D415, D416, N806
64+ # Ignore E203: Whitespace before ':'
65+ # Ignore D107: Missing docstring in __init__
66+ # Ignore D200: One-line docstring should fit on one line with quotes
67+ # Ignore D203: 1 blank line required before class docstring
68+ # Ignore D205: blank line required between summary line and description
69+ # Ignore D212: Multi-line docstring summary should start at the first line
70+ # Ignore D400: First line should end with a period
71+ # Ignore D401: First line should be in imperative mood
72+ # Ignore D410: Missing blank line after section
73+ # Ignore D411: Missing blank line before section
74+ # Ignore D412: No blank lines allowed between a section header and its content
75+ # Ignore D413: Missing blank line after last section
76+ # Ignore D414: Section has no content
77+ # Ignore D415: First line should end with a period, question mark, or exclamation point
78+ # Ignore D416: Section name should end with a colon
79+ # Ignore N806: Variable names with all caps (ALL_CAPS)
7580per-file-ignore =
7681 tests/evm_transition_tool/test_evaluate.py:E501
7782
0 commit comments