Skip to content

Commit

Permalink
Strip allegedly-smart quotes in comments.
Browse files Browse the repository at this point in the history
They break installing on a LANG=C system.
  • Loading branch information
tseaver committed Nov 14, 2016
1 parent 80728d3 commit 3c96b5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ ignore =
E128,
# E129: visually indented line with same indent as next logical line
E129,
# E201: whitespace after ‘(‘
# E201: whitespace after '('
E201,
# E202: whitespace before ‘)’
# E202: whitespace before ')'
E202,
# E231: missing whitespace after ‘,’, ‘;’, or ‘:’
# E231: missing whitespace after ',', ';', or ':'
E231,
# E261: at least two spaces before inline comment
E261,
# E262: inline comment should start with ‘# ‘
# E262: inline comment should start with '# '
E262,
# E265: block comment should start with ‘# ‘
# E265: block comment should start with '# '
E265,
# E266: too many leading ‘#’ for block comment
# E266: too many leading '#' for block comment
E266,
# E301: expected 1 blank line, found 0
E301,
Expand Down

0 comments on commit 3c96b5b

Please sign in to comment.