Skip to content

Commit 2561013

Browse files
committed
Ignore pycodestyle E306,E123,E722.
1 parent 2b34b40 commit 2561013

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/pycodestyle_on_repo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ def main():
4040
if not python_files:
4141
print('No Python files to lint, exiting.')
4242
else:
43-
pycodestyle_command = ['pycodestyle'] + python_files
43+
pycodestyle_command = ['pycodestyle',
44+
'--ignore=E306,E123,E722'] + python_files
4445
status_code = subprocess.call(pycodestyle_command)
4546
sys.exit(status_code)
4647

0 commit comments

Comments
 (0)