Enable E501 rule

This commit is contained in:
Jeremy Stretch 2024-11-15 15:10:13 -05:00
parent f08e36e538
commit 189aee602b

View File

@ -1,4 +1,6 @@
line-length = 120
[lint]
extend-select = ["E1", "E2", "E3", "W"]
ignore = ["E501", "F403", "F405"]
extend-select = ["E1", "E2", "E3", "E501", "W"]
ignore = ["F403", "F405"]
preview = true