18 lines
1 KiB
INI
18 lines
1 KiB
INI
[flake8]
|
|
extend-ignore =
|
|
Q0, E501, C812, E203, W503, # These default to arguing with Black. We might configure some of them eventually
|
|
ANN002, ANN003, # Ignore *args, **kwargs
|
|
ANN1, # Ignore self and cls annotations
|
|
ANN204, ANN206, # return annotations for special methods and class methods
|
|
D105, D107, # Missing Docstrings in magic method and __init__
|
|
S311, # Standard pseudo-random generators are not suitable for security/cryptographic purposes.
|
|
D401, # First line should be in imperative mood; try rephrasing
|
|
D400, # First line should end with a period
|
|
D101, # Missing docstring in public class
|
|
E712, # is bool, beanie requires == bool
|
|
# Plugins we don't currently include: flake8-return
|
|
R502, # do not implicitly return None in function able to return non-None value.
|
|
R503, # missing explicit return at the end of function ableto return non-None value.
|
|
R504, # unnecessary variable assignment, causes issues with Config
|
|
R505, B023, # Temporary
|
|
max-line-length=100
|