Inline ignore with # noqa: comment and comma separated violation codes
Command line argument --ignore with comma separated violation codes
Configuration line inside setup.cfg
# Inside `setup.cfg`:
[flake8]
per-file-ignores =
# There are multiple `assert`s in tests, we allow them:
tests/*.py: S101
my feeling is that much of the styleguide stuff is really good but we may want to ignore some specific violation codes for some time, e.g.
[flake8]
ignore = E501
(This is for example; E501 is just "line is too long" which I don't always see as a big deal with modern IDE's)
Inline ignore with
# noqa:
comment and comma separated violation codes Command line argument--ignore
with comma separated violation codes Configuration line inside setup.cfgmy feeling is that much of the styleguide stuff is really good but we may want to ignore some specific violation codes for some time, e.g.
(This is for example; E501 is just "line is too long" which I don't always see as a big deal with modern IDE's)