From 30e11f4d2009ae3633b8c53f43b41ef39d6c5cb4 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Fri, 30 Aug 2024 03:52:45 -0700 Subject: [PATCH] Pre-Commit: Ruff on All (#287) --- .pre-commit-config.yaml | 1 - pyproject.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 823313da..a914949b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -61,7 +61,6 @@ repos: # Run the linter - id: ruff args: [--fix, --exit-non-zero-on-fix] - types_or: [python, jupyter] # Run the formatter - id: ruff-format diff --git a/pyproject.toml b/pyproject.toml index 7168b3e3..3c25fcc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,6 @@ add-ignore = ["D100", "D104"] docstring-code-format = true [tool.ruff.lint] -# https://docs.astral.sh/ruff/ select = ["D", "E", "F", "I"] ignore = ["D100", "D104", "E402", "E501"]