1target-version = "py311"
2
3[lint]
4ignore = [
5 "E501", # Never enforce `E501` (line length violations)
6 "S101", # pytest use of assert
7 "ISC001", # Implicit string concatenation
8]
9extend-select = [
10 "I", # isort
11 # # "C90", # mccabe
12 # # "N", # pep8-naming
13 "UP", # pyupgrade
14 # "S", # bandit
15 # # "B", # bugbear
16 "C4", # flake8-comprehensions
17 # # "DTZ", # flake8-datetimez
18 "ISC", # flake8-implicit-str-concat
19 # # "G", # flake8-logging-format
20 # # "T20", # print
21 "PT", # pytest
22 "B006", # mutable-argument-default
23]