summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJimi Cullen <jimifhcullen@gmail.com>2018-04-15 15:31:31 +0000
committerJimi Cullen <jimifhcullen@gmail.com>2018-04-15 15:31:31 +0000
commitef1d5ceefcbfacf5dfe94534c4879ca814b130f0 (patch)
tree594b59569eedd9c8fd4aad65d6884100198a0120 /setup.py
parente61d9d24668a3f98baf09db1d07dacfb9fc83beb (diff)
downloadflake8-ef1d5ceefcbfacf5dfe94534c4879ca814b130f0.tar.gz
Add hooks for new pycodestyle checks.
Add hooks for new checks introduced in pycodestyle 2.4.0. For details of the changes to pycodestyle, see: https://pycodestyle.readthedocs.io/en/latest/developer.html
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 c4862e9..b156feb 100644
--- a/setup.py
+++ b/setup.py
@@ -119,6 +119,8 @@ setuptools.setup(
PEP8_PLUGIN('python_3000_raise_comma'),
PEP8_PLUGIN('python_3000_not_equal'),
PEP8_PLUGIN('python_3000_backticks'),
+ PEP8_PLUGIN('python_3000_invalid_escape_sequence'),
+ PEP8_PLUGIN('python_3000_async_await_keywords'),
],
'flake8.report': [
'default = flake8.formatting.default:Default',