forked from pwndbg/pwndbg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
33 lines (31 loc) · 827 Bytes
/
setup.cfg
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
[flake8]
ignore =
# whitespace before ‘:’
E203,
# too many leading '#' for block comment
E266,
# block comment should start with ‘# ‘
E265,
# module level import not at top of file
E402,
# line too long (82 > 79 characters)
E501,
# do not assign a lambda expression, use a def
E731
# line break before binary operator (default)
W503,
# doc line too long (82 > 79 characters) (default)
W505,
# name may be undefined, or defined from star imports: module
F405,
# redefinition of unused name from line n
F811,
# undefined name name
F821,
# local variable name is assigned to but never used
F841
per-file-ignores =
# Unused imports in __init__.py are fine
__init__.py:F401
max-line-length = 100
exclude = gdb-pt-dump