chiark / gitweb /
pep8: Don't ignore rules we already obey
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 4 Jan 2016 20:38:22 +0000 (21:38 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Fri, 11 Mar 2016 13:27:00 +0000 (13:27 +0000)
hooks/pre-commit

index 1ea732e45d760da1381d5c3503eab2c3ead1853f..5872539aed4a26d0bab87c85a466c6597e4ec981 100755 (executable)
@@ -46,8 +46,8 @@ else
     done
 fi
 
-# In the default configuration, the checks E123, E133, E226, E241 and E242 are
-# ignored because they are not rules unanimously accepted
+# In the default configuration, the checks E123, E226 ignored because
+# they are not rules unanimously accepted
 # On top of those, we ignore:
 # * E501: line too long (82 > 79 characters)
 #   - Recommended for readability but not enforced
@@ -56,7 +56,7 @@ fi
 #   - It's quite new
 #   - Quite pedantic
 
-PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503"
+PEP8_IGNORE="E123,E226,E501,W503"
 
 err() {
        echo ERROR: "$@"