Plain is headed towards 1.0! Subscribe for development updates →

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