We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772d09b commit 05861e4Copy full SHA for 05861e4
nox.py
@@ -136,12 +136,14 @@ def _setup_appengine_sdk(session):
136
PYTEST_COMMON_ARGS = []
137
138
# Ignore I202 "Additional newline in a section of imports." to accommodate
139
-# region tags in import blocks.
+# region tags in import blocks. Since we specify an explicit ignore, we also
140
+# have to explicitly ignore the list of default ignores:
141
+# `E121,E123,E126,E226,E24,E704,W503,W504` as shown by `flake8 --help`.
142
FLAKE8_COMMON_ARGS = [
143
'--show-source', '--builtin', 'gettext', '--max-complexity', '20',
- '--import-order-style', 'google', '--exclude',
- '.nox,.cache,env,lib,generated_pb2,*_pb2.py,*_pb2_grpc.py',
144
- '--ignore=I202',
+ '--import-order-style', 'google',
145
+ '--exclude', '.nox,.cache,env,lib,generated_pb2,*_pb2.py,*_pb2_grpc.py',
146
+ '--ignore=E121,E123,E126,E226,E24,E704,W503,W504,I202',
147
]
148
149
0 commit comments