Skip to content

Commit 5eaa3c7

Browse files
committed
remove isort from pre-commit
1 parent 632fe52 commit 5eaa3c7

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@ repos:
4040
types: [python]
4141
require_serial: true
4242
args: ["--fix"]
43-
- id: isort
44-
name: isort
45-
entry: isort
46-
require_serial: true
47-
language: system
48-
types_or: [cython, pyi, python]
49-
args: ["--filter-files"]
5043
- id: pyupgrade
5144
name: pyupgrade
5245
description: Automatically upgrade syntax for newer versions.

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ def precommit(session: Session) -> None:
123123
"black",
124124
"darglint",
125125
"ruff",
126-
"isort",
127126
"pep8-naming",
128127
"pre-commit",
129128
"pre-commit-hooks",

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ module = [
7878
ignore_missing_imports = true
7979

8080
[tool.ruff]
81+
src = ["src", "tests"]
8182
ignore = [
8283
'B019',
8384
'D203',

0 commit comments

Comments
 (0)