From 369fb8d3ff7486a6afcc8dba23165a2d05565d54 Mon Sep 17 00:00:00 2001 From: Juro Oravec Date: Sun, 14 Sep 2025 16:04:16 +0200 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 37235001..98b7c8ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,32 +147,6 @@ ignore = [ "N818", # Exception name `NotRegistered` should be named with an Error suffix ] -[tool.ruff.lint.per-file-ignores] -"tests/*" = [ - "ARG002", # Unused method argument: `components_settings` - "ANN", # Annotations are not needed for tests - "N806", # Variable `SimpleComponent` in function should be lowercase - "PLC0415", # `import` should be at the top-level of a file - "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` - "S101", # Use of `assert` detected - "TRY002", # Create your own exception -] -"benchmarks/*" = [ - "ARG002", # Unused method argument: `components_settings` - "ANN", # Annotations are not needed for tests - "N806", # Variable `SimpleComponent` in function should be lowercase - "PLC0415", # `import` should be at the top-level of a file - "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` - "S101", # Use of `assert` detected - "TRY002", # Create your own exception -] -"sampleproject/*" = [ - "ARG002", # Unused method argument - "ANN", # Annotations are not needed for tests - "T201", # `print` found - "DTZ", # `datetime` found -] - [tool.ruff.lint.per-file-ignores] "tests/*" = [ "ARG002", # Unused method argument: `components_settings`