Skip to content

Commit

Permalink
[checkstyle.sh] Ignore some new/recently tweaked rules
Browse files Browse the repository at this point in the history
  • Loading branch information
embolalia committed Oct 21, 2014
1 parent 07ee53b commit 0c4267b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions checkstyle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ find_source_files() {
files=$(find_source_files)
# These are acceptable (for now). 128 and 127 should be removed eventually.
ignore='--ignore=E501,E128,E127'
# These are rules that are relatively new or have had their definitions tweaked
# recently, so we'll forgive them until versions of PEP8 in various developers'
#distros are updated
ignore=$ignore',E265,E713,E111,E113'
# For now, go through all the checking stages and only die at the end
exit_code=0

Expand Down

0 comments on commit 0c4267b

Please sign in to comment.