Skip to content

Commit

Permalink
Ignore pycodestyle E306,E123,E722.
Browse files Browse the repository at this point in the history
  • Loading branch information
daspecster committed Jan 30, 2017
1 parent 2b34b40 commit 2561013
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/pycodestyle_on_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def main():
if not python_files:
print('No Python files to lint, exiting.')
else:
pycodestyle_command = ['pycodestyle'] + python_files
pycodestyle_command = ['pycodestyle',
'--ignore=E306,E123,E722'] + python_files
status_code = subprocess.call(pycodestyle_command)
sys.exit(status_code)

Expand Down

0 comments on commit 2561013

Please sign in to comment.