Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 0ae1e5a

Browse files
committed
Suppress E117 as workaround for PyCQA/pycodestyle#836
1 parent 5987484 commit 0ae1e5a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.flake8

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
[flake8]
2-
ignore = W191,W503
2+
ignore =
3+
# Allow tabs for indentation
4+
W191
5+
# Workaround for https://github.com/PyCQA/pycodestyle/issues/836
6+
E117
7+
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
8+
W503
9+
# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
10+
W504

0 commit comments

Comments
 (0)