summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-06-15 07:48:46 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-06-15 07:48:46 -0500
commit25502f6ade5bef3fb9fc5fda0e13c7a16b93f332 (patch)
tree14c2584424d527a3c022150c440ff61ea42d98de /docs
parent3af48abac6c7221f736bbed5a3c726aca260ad97 (diff)
downloadflake8-25502f6ade5bef3fb9fc5fda0e13c7a16b93f332.tar.gz
Add note about # noqa: <errors>
Diffstat (limited to 'docs')
-rw-r--r--docs/source/release-notes/3.0.0.rst15
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/source/release-notes/3.0.0.rst b/docs/source/release-notes/3.0.0.rst
index e729723..2969c0d 100644
--- a/docs/source/release-notes/3.0.0.rst
+++ b/docs/source/release-notes/3.0.0.rst
@@ -3,16 +3,21 @@
- Rewrite our documentation from scratch! (http://flake8.pycqa.org)
-- ``--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
- 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
- will also still work, but the former should be far more intuitive.
+- 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
+ 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``. Previously, you would have had to do ``--ignore E123,F,W`` which
+ will also still work, but the former should be far more intuitive.
+
+- Add support for in-line ``# noqa`` comments to specify **only** the error
+ codes to be ignored, e.g., ``# noqa: E123,W503``
+
- Add entry-point for formatters as well as a base class that new formatters
can inherit from. See the documentation for more details.