ruff.toml 245 Bytes
Newer Older
Rayyyyy's avatar
Rayyyyy committed
1
2
3
4
5
6
7
8
9
10
lint.ignore-init-module-imports = true

line-length = 119

# Skip `E731` (do not assign a lambda expression, use a def)
lint.ignore = ["E731"]

[lint.per-file-ignores]
# Ignore `E402` (import violations) in all examples
"examples/**" = ["E402"]