summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Myers <jason@jasonamyers.com>2015-12-20 11:23:26 -0600
committerJason Myers <jason@jasonamyers.com>2015-12-20 11:23:41 -0600
commitb0a6bada5c394ce7c43f5ff93bfc443570035f1c (patch)
tree94c16707bc2255618097587d717a928ac288a74a
parenta08a65b982a555c05c22068da4e2d760a62928fe (diff)
downloadflake8-b0a6bada5c394ce7c43f5ff93bfc443570035f1c.tar.gz
Switching to --enable-extensions instead of --select
Signed-off-by: Jason Myers <jason@jasonamyers.com>
-rw-r--r--docs/extensions.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/extensions.rst b/docs/extensions.rst
index def8047..9e89fb1 100644
--- a/docs/extensions.rst
+++ b/docs/extensions.rst
@@ -117,9 +117,9 @@ update ``mccabe.py`` with this variable as shown below:
off_by_default = True
If we wanted to run the optional extension or check, we need to specify the
-error and warnings via the ``select`` setting or command line argument. In our
-case, we could run ``flake8 --select=C90`` which would run our off_by_default
-example version of the mccabe extension.
+error and warnings via the ``--enable-extension`` command line argument. In our
+case, we could run ``flake8 --enable-extension=C90`` which would enable our
+off_by_default example version of the mccabe extension.
Existing Extensions