13 lines
283 B
TOML
13 lines
283 B
TOML
|
[lint]
|
||
|
select = ["E", "F", "ISC"]
|
||
|
|
||
|
# ISC001: single-line-implicit-string-concatenation (disable for formatter)
|
||
|
# ISC003: Allow explicit multiline strings
|
||
|
# E501: Line too long
|
||
|
ignore = ["ISC003", "E501", "ISC001"]
|
||
|
|
||
|
[lint.flake8-implicit-str-concat]
|
||
|
allow-multiline = false
|
||
|
|
||
|
[format]
|