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 = [
68
68
" D" , # pydocstyle
69
69
" DTZ" , # flake8-datetimez
70
70
" E" , # pycodestyle
71
+ " ERA" , # eradicate
71
72
" EXE" , # flake8-executable
72
73
" F" , # Pyflakes
73
74
" G" , # flake8-logging-format
@@ -96,10 +97,7 @@ select = [
96
97
# "ANN", # flake8-annotations
97
98
# "BLE", # flake8-blind-except
98
99
# "EM", # flake8-errmsg
99
- # "ERA", # eradicate
100
100
# "FBT", # flake8-boolean-trap
101
- # "NPY", # NumPy-specific rules
102
- # "PD", # pandas-vet
103
101
# "Q", # flake8-quotes
104
102
# "SIM", # flake8-simplify
105
103
# "SLF", # flake8-self
@@ -108,7 +106,7 @@ select = [
108
106
]
109
107
# Note: use `ruff rule ...` to see explanations of rules
110
108
ignore = [
111
- " D203" , # no blank linke before class docstring
109
+ " D203" , # no blank line before class docstring
112
110
" D213" , # multi-line docstrings should not start at second line
113
111
" S110" , # allow silently catching errors
114
112
]
You can’t perform that action at this time.
0 commit comments