File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ select = [
6868 " D" , # pydocstyle
6969 " DTZ" , # flake8-datetimez
7070 " E" , # pycodestyle
71+ " ERA" , # eradicate
7172 " EXE" , # flake8-executable
7273 " F" , # Pyflakes
7374 " G" , # flake8-logging-format
@@ -96,10 +97,7 @@ select = [
9697 # "ANN", # flake8-annotations
9798 # "BLE", # flake8-blind-except
9899 # "EM", # flake8-errmsg
99- # "ERA", # eradicate
100100 # "FBT", # flake8-boolean-trap
101- # "NPY", # NumPy-specific rules
102- # "PD", # pandas-vet
103101 # "Q", # flake8-quotes
104102 # "SIM", # flake8-simplify
105103 # "SLF", # flake8-self
@@ -108,7 +106,7 @@ select = [
108106]
109107# Note: use `ruff rule ...` to see explanations of rules
110108ignore = [
111- " D203" , # no blank linke before class docstring
109+ " D203" , # no blank line before class docstring
112110 " D213" , # multi-line docstrings should not start at second line
113111 " S110" , # allow silently catching errors
114112]
You can’t perform that action at this time.
0 commit comments