audit-labs/audit-tools
clone: git clone https://gitbay.org/audit-labs/audit-tools.git
main: ruff.toml · raw
1# Ruff configuration for audit-tools.
2#
3# A few lint rules are disabled because they flag patterns this project uses
4# deliberately:
5#
6# BLE001 - The audit collectors and their CLI wrappers intentionally catch
7# broad exceptions so that one failing check never aborts a whole
8# audit run. The error is reported and collection continues.
9# DTZ011 - date.today() is used to build human-facing, date-stamped output
10# folder names, where the local date is the intended value.
11# S112 - try/except/continue is used to skip resources that are unavailable
12# during collection (e.g. a repo without the requested branch).
13[lint]
14ignore = ["BLE001", "DTZ011", "S112"]