Skip to content

Commit f6ae60b

Browse files
committed
Fix lint errors and warnings
1 parent 4588bb0 commit f6ae60b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ include = [
8282
[tool.ruff]
8383
line-length = 120
8484

85-
select = [
85+
lint.select = [
8686
"A", # flake8-builtins
8787
"B", # flake8-bugbear
8888
"D", # pydocstyle
@@ -98,7 +98,7 @@ select = [
9898
"PERF" # Perflint
9999
]
100100

101-
ignore = [
101+
lint.ignore = [
102102
"E741",
103103
"D202",
104104
"D401",

pyspelling/filters/html.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# noqa: A005
12
"""
23
HTML filter.
34

pyspelling/filters/xml.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# noqa: A005
12
"""
23
XML filter.
34

0 commit comments

Comments
 (0)