Skip to content

Commit bf5cacb

Browse files
authored
gha(linters): enable 7 more Python flake8 checks (#7005)
1 parent 2dc9f1e commit bf5cacb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/linters/.flake8

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,17 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
# E223 Tab before operator
19+
# E224 Tab after operator
20+
# E242 Tab after ','
21+
# E273 Tab after keyword
22+
# E274 Tab before keyword
23+
# E901 SyntaxError or IndentationError
24+
# E902 IOError
1825
# W291 Trailing whitespace
1926
# W292 No newline at end of file
2027
# W293 Blank line contains whitespace
2128
# W391 Blank line at end of file
2229

2330
[flake8]
24-
select = W291,W292,W293,W391
31+
select = E223,E224,E242,E273,E274,E901,E902,W291,W292,W293,W391

0 commit comments

Comments
 (0)