Skip to content

Commit c8d96f8

Browse files
committed
update ruff.toml to exclude abstract methods and noxfile
1 parent 422d6ac commit c8d96f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/linters/.ruff.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ exclude = [
8181
"venv",
8282
"*/migrations/*",
8383
"test_*",
84+
"noxfile.py",
8485
]
8586

8687
[lint.isort]
@@ -98,7 +99,7 @@ lines-between-types = 1
9899

99100
[lint.pydocstyle]
100101
convention = "google"
101-
ignore-decorators = ["typing.overload"]
102+
ignore-decorators = ["typing.overload", "abc.abstractmethod"]
102103
ignore-var-parameters = true
103104

104105
[lint.flake8-annotations]

0 commit comments

Comments
 (0)