You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/setup.cfg

34 lines
827 B
INI

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

[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