mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-10 06:44:18 +00:00
Add note about # noqa: <errors>
This commit is contained in:
parent
3af48abac6
commit
25502f6ade
1 changed files with 10 additions and 5 deletions
|
|
@ -3,15 +3,20 @@
|
||||||
|
|
||||||
- Rewrite our documentation from scratch! (http://flake8.pycqa.org)
|
- Rewrite our documentation from scratch! (http://flake8.pycqa.org)
|
||||||
|
|
||||||
|
- Drop explicit support for Pythons 2.6, 3.2, and 3.3.
|
||||||
|
|
||||||
|
- Remove dependence on pep8/pycodestyle for file processing, plugin
|
||||||
|
dispatching, and more. We now control all of this while keeping backwards
|
||||||
|
compatibility.
|
||||||
|
|
||||||
- ``--select`` and ``--ignore`` can now both be specified and try to find the
|
- ``--select`` and ``--ignore`` can now both be specified and try to find the
|
||||||
most specific rule from each. For example, if you do ``--select E --ignore
|
most specific rule from each. For example, if you do ``--select E --ignore
|
||||||
E123`` then we will report everything that starts with ``E`` except for
|
E123`` then we will report everything that starts with ``E`` except for
|
||||||
``E123``. Previously, you would have had to do ``--ignore E123,F,W`` which
|
``E123``. Previously, you would have had to do ``--ignore E123,F,W`` which
|
||||||
will also still work, but the former should be far more intuitive.
|
will also still work, but the former should be far more intuitive.
|
||||||
|
|
||||||
- Remove dependence on pep8/pycodestyle for file processing, plugin
|
- Add support for in-line ``# noqa`` comments to specify **only** the error
|
||||||
dispatching, and more. We now control all of this while keeping backwards
|
codes to be ignored, e.g., ``# noqa: E123,W503``
|
||||||
compatibility.
|
|
||||||
|
|
||||||
- Add entry-point for formatters as well as a base class that new formatters
|
- Add entry-point for formatters as well as a base class that new formatters
|
||||||
can inherit from. See the documentation for more details.
|
can inherit from. See the documentation for more details.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue