summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-06 19:09:56 +0000
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-06 19:09:56 +0000
commit6e656c64c79146e79775a89a70fdf8249014e2bb (patch)
tree6ddf54ffa85da9c58f5ea786e8617db9544595e4
parentf6e19b074809615eb794257520e25e7dd3455f65 (diff)
parentee435593488a5c3b9805bc686b83d17505491c42 (diff)
downloadflake8-6e656c64c79146e79775a89a70fdf8249014e2bb.tar.gz
Merge branch 'bug/361' into 'master'
Add new pycodestyle checks Closes #361 See merge request !199
-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'),