forked from ethereum/execution-spec-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
34 lines (32 loc) · 1.45 KB
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[flake8]
dictionaries=en_US,python,technical
docstring-convention = google
extend-ignore = E203, D107, D200, D203, D205,
D212, E231, D400, D401, D410, D411, D412,
D413, D414, D415, D416, N806
# Ignore E203: Whitespace before ':'
# Ignore D107: Missing docstring in __init__
# Ignore D200: One-line docstring should fit on one line with quotes
# Ignore D203: 1 blank line required before class docstring
# Ignore D205: blank line required between summary line and description
# Ignore D212: Multi-line docstring summary should start at the first line
# Ignore E231: Missing whitespace after ':'
# Ignore D400: First line should end with a period
# Ignore D401: First line should be in imperative mood
# Ignore D410: Missing blank line after section
# Ignore D411: Missing blank line before section
# Ignore D412: No blank lines allowed between a section header and its content
# Ignore D413: Missing blank line after last section
# Ignore D414: Section has no content
# Ignore D415: First line should end with a period, question mark, or exclamation point
# Ignore D416: Section name should end with a colon
# Ignore N806: Variable names with all caps (ALL_CAPS)
max-line-length = 99
per-file-ignore =
tests/evm_transition_tool/test_evaluate.py:E501
extend-exclude =
setup.py
src/evm_transition_tool/tests/
src/ethereum_test_tools/tests/
src/ethereum_test_forks/tests/
# vim: set ft=dosini: