diff --git a/ruff.toml b/ruff.toml index a4ac551476..10969fed6b 100644 --- a/ruff.toml +++ b/ruff.toml @@ -2,3 +2,9 @@ # Add linting rules here lint.select = ["F", "I"] lint.ignore = ["E731"] + + +# Exclude third-party modules +exclude = [ + "third_party/*", +]