From 68782675b7f00c5d24c24e424efd1fbcb0705224 Mon Sep 17 00:00:00 2001 From: Jimi Cullen Date: Sun, 15 Apr 2018 14:02:49 +0000 Subject: [PATCH] Add new pycodestyle check hooks. Add new pycodestyle check hooks for breaks around binary ops. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) 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'),