mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 17:12:46 +00:00
17 lines
453 B
TOML
17 lines
453 B
TOML
line-length = 120
|
|
|
|
[lint]
|
|
select = [ "ALL" ]
|
|
ignore = [
|
|
"COM812", # conflicts with the formatter
|
|
"D203", # conflicts with 'D211'
|
|
"D213", # conflicts with 'D212'
|
|
]
|
|
|
|
[lint.per-file-ignores]
|
|
"tests/*" = [
|
|
"PLR0913", # allowing functions with many arguments in tests (required for fixtures)
|
|
"PLR2004", # allowing comparisons using unamed numerical constants in tests
|
|
"S101", # allowing 'assert' statements in tests
|
|
]
|