Skip to content

Commit 0eb92e6

Browse files
tiffanychu90tiffanychu90
authored andcommitted
suppress precommit flake8 e203
1 parent fc42def commit 0eb92e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ repos:
1212
rev: 6.0.0
1313
hooks:
1414
- id: flake8
15-
args: ["--ignore=E501,W503,F403,F405,E711,E712,E231,E702"]
15+
args: ["--ignore=E501,W503,F403,F405,E711,E712,E231,E702,E203"]
1616
# E711: comparison to None should be 'if cond is not None:' (siuba filtering requires we use != None and not is not)
1717
# E712: line too long and line before binary operator (black is ok with these), assign lambda expression OK, comparison to True with is (siuba uses ==)
1818
# E231: missing whitespace after colon (we don't want white space when setting gs://)
1919
# E702: multiple statements on one line (semicolon)
20+
# E203: whitespace before ':', this rule is in conflict with another formatter's.
2021
types:
2122
- python
2223
files: _shared_utils

0 commit comments

Comments
 (0)