@@ -92,12 +92,12 @@ preview = true
9292lint.select = [
9393 # "F", # Pyflakes (`F`)
9494 " E" , # pycodestyle error (`E`)
95- # "W", # pycodestyle warning (`W`)
95+ " W" , # pycodestyle warning (`W`)
9696 # "C90", # mccabe (`C90`)
9797 " I" , # isort (`I`)
9898 # "N", # pep8-naming (`N`)
9999 # "D", # pydocstyle (`D`)
100- # "UP", # pyupgrade (`UP`)
100+ " UP" , # pyupgrade (`UP`)
101101 # "YTT", # flake8-2020 (`YTT`)
102102 # "ANN", # flake8-annotations (`ANN`)
103103 # "S", # flake8-bandit (`S`)
@@ -106,9 +106,9 @@ lint.select = [
106106 # "B", # flake8-bugbear (`B`)
107107 # "A", # flake8-builtins (`A`)
108108 # "COM", # flake8-commas (`COM`)
109- # "CPY", # flake8-copyright (`CPY`)
109+ " CPY" , # flake8-copyright (`CPY`)
110110 # "C4", # flake8-comprehensions (`C4`)
111- # "DTZ", # flake8-datatimez (`DTZ`)
111+ " DTZ" , # flake8-datatimez (`DTZ`)
112112 # "T10", # flake8-debugger (`T10`)
113113 # "EM", # flake8-errmsg (`EM`)
114114 # "FA", # flake8-future-annotations (`FA`)
@@ -118,22 +118,22 @@ lint.select = [
118118 # "PT", # flake8-pytest-style (`PT`)
119119 # "RSE", # flake8-raise (`RSE`)
120120 # "RET", # flake8-return (`RET`)
121- # "SLF", # flake8-self (`SLF`)
122- # "SIM", # flake8-simplify (`SIM`)
123- # "TID", # flake8-tidy-imports (`TID`)
121+ " SLF" , # flake8-self (`SLF`)
122+ " SIM" , # flake8-simplify (`SIM`)
123+ " TID" , # flake8-tidy-imports (`TID`)
124124 # "TCH", # flake8-type-checking (`TCH`)
125125 # "INT", # flake8-gettext (`INT`)
126126 # "ARG", # flake8-unsused-arguments (`ARG`)
127127 # "PTH", # flake8-use-pathlib (`PTH`)
128128 # "TD", # flake8-todos (`TD`)
129129 # "FIX", # flake8-fixme (`FIX`)
130130 # "ERA", # eradicate (`ERA`)
131- # "PD", # pandas-vet (`PD`)
132- # "PGH", # pygrep-hooks (`PGH`)
131+ " PD" , # pandas-vet (`PD`)
132+ " PGH" , # pygrep-hooks (`PGH`)
133133 # "PL", # pylint (`PL`)
134134 # "TRY", # tryceratos (`TRY`)
135135 # "FLY", # flynt (`FLY`)
136- # "NPY", # NumPy-specific rules (`NPY`)
136+ " NPY" , # NumPy-specific rules (`NPY`)
137137 # "PERF", # Perflint (`PERF`)
138138 # "RUF", # Ruff-specific rules (`RUF`)
139139 # "FURB", # refurb (`FURB`) - ERROR: Unknown rule selector: `FURB`
0 commit comments