summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJimi Cullen <jimifhcullen@gmail.com>2018-04-15 14:02:49 +0000
committerJimi Cullen <jimifhcullen@gmail.com>2018-04-15 14:02:49 +0000
commit68782675b7f00c5d24c24e424efd1fbcb0705224 (patch)
treeb3509b11891753001332707a1c882e5bc2173d1b /setup.py
parent85c503de32f81ed9859d902cbe20eb4d2e4e8d55 (diff)
downloadflake8-68782675b7f00c5d24c24e424efd1fbcb0705224.tar.gz
Add new pycodestyle check hooks.
Add new pycodestyle check hooks for breaks around binary ops.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 9883795..c4862e9 100644
--- a/setup.py
+++ b/setup.py
@@ -108,6 +108,8 @@ setuptools.setup(
PEP8_PLUGIN('module_imports_on_top_of_file'),
PEP8_PLUGIN('compound_statements'),
PEP8_PLUGIN('explicit_line_join'),
+ PEP8_PLUGIN('break_after_binary_operator'),
+ PEP8_PLUGIN('break_before_binary_operator'),
PEP8_PLUGIN('comparison_to_singleton'),
PEP8_PLUGIN('comparison_negative'),
PEP8_PLUGIN('comparison_type'),