ruff: Ignore TRY301 'raise-within-try' as there are legitimate reasons to do this

This commit is contained in:
Qubasa
2025-07-08 12:51:30 +07:00
parent f854c39292
commit ad243d843e
2 changed files with 4 additions and 0 deletions

View File

@@ -1,6 +1,9 @@
# DO NOT EDIT THIS FILE MANUALLY. IT IS GENERATED.
# This file was generated by running `pkgs/clan-cli/clan_lib.inventory/update.sh`
#
# ruff: noqa: N815
# ruff: noqa: N806
# ruff: noqa: F401
# fmt: off
from typing import Any, Literal, NotRequired, TypedDict

View File

@@ -49,6 +49,7 @@ lint.ignore = [
# A005 Module `inspect` shadows a Python standard-library module
# We might actually want to fix this.
"A005",
"TRY301",
"ANN401",
"TRY400",
"E402",