summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-05 07:27:20 -0500
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-05 07:27:20 -0500
commitee435593488a5c3b9805bc686b83d17505491c42 (patch)
tree0e7caee3365282fc00aa0e4774ee089cb50ccfb2 /setup.py
parent6df26ffd57178e50194aea31b3bf9c572f91fa54 (diff)
downloadflake8-ee435593488a5c3b9805bc686b83d17505491c42.tar.gz
Add new pycodestyle checks
Closes #361
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index de350a8..4d40862 100644
--- a/setup.py
+++ b/setup.py
@@ -108,8 +108,8 @@ setuptools.setup(
PEP8_PLUGIN('comparison_to_singleton'),
PEP8_PLUGIN('comparison_negative'),
PEP8_PLUGIN('comparison_type'),
- # NOTE(sigmavirus24): Add this back once PyCodestyle 2.1.0 is out
- # PEP8_PLUGIN('ambiguous_identifier'),
+ PEP8_PLUGIN('ambiguous_identifier'),
+ PEP8_PLUGIN('bare_except'),
PEP8_PLUGIN('python_3000_has_key'),
PEP8_PLUGIN('python_3000_raise_comma'),
PEP8_PLUGIN('python_3000_not_equal'),