aletson / votefinder-web

Web-based vote parser for use on various web forums.
http://votefinder.org
GNU General Public License v3.0
2 stars 1 forks source link

Github Actions #169

Closed aletson closed 4 years ago

aletson commented 4 years ago

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)