bumpver/pylint-ignore.md

23 lines
830 B
Markdown
Raw Normal View History

2020-09-06 21:15:27 +00:00
# Pylint-Ignore
2020-07-19 19:07:30 +00:00
**WARNING: This file is programatically generated.**
2020-09-06 21:15:27 +00:00
This file is parsed by [`pylint-ignore`](https://pypi.org/project/pylint-ignore/)
to determine which
[Pylint messages](https://pylint.pycqa.org/en/stable/technical_reference/features.html)
should be ignored.
2020-07-19 19:07:30 +00:00
- Do not edit this file manually.
- To update, use `pylint-ignore --update-ignorefile`
The recommended approach to using `pylint-ignore` is:
2020-09-06 21:15:27 +00:00
1. If a message refers to a valid issue, update your code rather than
ignoring the message.
2. If a message should *always* be ignored (globally), then to do so
via the usual `pylintrc` or `setup.cfg` files rather than this
`pylint-ignore.md` file.
3. If a message is a false positive, add a comment of this form to your code:
`# pylint:disable=<symbol> ; explain why this is a false positive`
2020-07-19 19:07:30 +00:00