@@ -91,7 +91,7 @@ preview = true
9191
9292# Enable rules
9393lint.select = [
94- # "F", # Pyflakes (`F`)
94+ " F" , # Pyflakes (`F`)
9595 " E" , # pycodestyle error (`E`)
9696 " W" , # pycodestyle warning (`W`)
9797 " C90" , # mccabe (`C90`)
@@ -127,18 +127,18 @@ lint.select = [
127127 # "ARG", # flake8-unsused-arguments (`ARG`)
128128 " PTH" , # flake8-use-pathlib (`PTH`)
129129 # "TD", # flake8-todos (`TD`)
130- # "FIX", # flake8-fixme (`FIX`)
130+ " FIX" , # flake8-fixme (`FIX`)
131131 " ERA" , # eradicate (`ERA`)
132132 " PD" , # pandas-vet (`PD`)
133133 " PGH" , # pygrep-hooks (`PGH`)
134134 # "PL", # pylint (`PL`)
135135 # "TRY", # tryceratos (`TRY`)
136- # "FLY", # flynt (`FLY`)
136+ " FLY" , # flynt (`FLY`)
137137 " NPY" , # NumPy-specific rules (`NPY`)
138138 # "PERF", # Perflint (`PERF`)
139- # "RUF", # Ruff-specific rules (`RUF`)
140- # "FURB", # refurb (`FURB`) - ERROR: Unknown rule selector: `FURB`
141- # "LOG", # flake8-logging (`LOG`) - ERROR: Unknown rule selector: `LOG`
139+ " RUF" , # Ruff-specific rules (`RUF`)
140+ " FURB" , # refurb (`FURB`) - ERROR: Unknown rule selector: `FURB`
141+ " LOG" , # flake8-logging (`LOG`) - ERROR: Unknown rule selector: `LOG`
142142]
143143
144144lint.ignore = [
0 commit comments