mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-05-16 06:59:06 +02:00
be009a4094
Rename the entire project from FuzzForge to SecPipe: - Python packages: fuzzforge_cli → secpipe_cli, fuzzforge_common → secpipe_common, fuzzforge_mcp → secpipe_mcp, fuzzforge_tests → secpipe_tests - Directories: fuzzforge-cli → secpipe-cli, fuzzforge-common → secpipe-common, fuzzforge-mcp → secpipe-mcp, fuzzforge-tests → secpipe-tests - Environment variables: FUZZFORGE_* → SECPIPE_* - MCP server name: SecPipe MCP Server - CI workflows, Makefile, Dockerfile, hub-config, NOTICE updated - Fix mcp-server.yml to use uvicorn secpipe_mcp.application:app
32 lines
1.2 KiB
TOML
32 lines
1.2 KiB
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
|
|
]
|
|
"src/**" = [
|
|
"ASYNC109", # async with timeout param: intentional pattern
|
|
"EM102", # f-string in exception: existing pattern
|
|
"PERF401", # list comprehension: readability over perf
|
|
"PLR0913", # too many arguments: API compatibility
|
|
"PLW0602", # global variable: intentional for shared state
|
|
"PLW0603", # global statement: intentional for shared state
|
|
"RET504", # unnecessary assignment: readability
|
|
"RET505", # unnecessary elif after return: readability
|
|
"TC001", # TYPE_CHECKING: causes circular imports
|
|
"TC003", # TYPE_CHECKING: causes circular imports
|
|
"TRY300", # try-else: existing pattern
|
|
"TRY301", # abstract raise: existing pattern
|
|
"TRY003", # message in exception: existing pattern
|
|
]
|