Skip to content

Commit

Permalink
ci: fix for flake8 6.0.0 breaking old configs
Browse files Browse the repository at this point in the history
Ref PyCQA/flake8#1760

👏 👏
  • Loading branch information
Xyene committed Dec 16, 2022
1 parent f595312 commit 802b3d3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .flake8
Expand Up @@ -4,12 +4,16 @@ application-import-names = dmoj
import-order-style = pycharm
enable-extensions = G
ignore =
E203, E501, W503, # for Black
W504, # line break occurred after a binary operator
# for Black
E203, E501, W503,
# line break occurred after a binary operator
W504,
# allow only generator_stop and annotations future imports
FI10,FI11,FI12,FI13,FI14,FI15,FI16,FI17,FI18,FI55,FI58,
C814, # missing trailing comma in Python 2 only
C818 # trailing comma on bare tuple prohibited
# missing trailing comma in Python 2 only
C814,
# trailing comma on bare tuple prohibited
C818
per-file-ignores =
# F403: import *, F405: name comes from import *
./dmoj/cptbox/compiler_isolate.py:F403,F405
Expand Down

0 comments on commit 802b3d3

Please sign in to comment.