@@ -250,13 +250,20 @@ extend-select = [
250250 " ANN" , # flake8-annotations
251251 " ARG" , # flake8-unused-arguments
252252 " B" , # flake8-bugbear
253+ " BLE" , # flake8-blind-except
253254 " C4" , # flake8-comprehensions
255+ " DTZ" , # flake8-datetimez
254256 " EM" , # flake8-errmsg
257+ " EXE" , # flake8-executable
258+ " FA" , # flake8-future-annotations
255259 " FBT" , # flake8-boolean-trap
256260 " FLY" , # flynt
261+ " FURB" , # refurb
262+ " G" , # flake8-logging-format
257263 " I" , # isort
258264 " ICN" , # flake8-import-conventions
259265 " ISC" , # flake8-implicit-str-concat
266+ " LOG" , # flake8-logging
260267 " N" , # flake8-naming
261268 " PERF" , # perflint
262269 " PGH" , # pygrep-hooks
@@ -265,24 +272,23 @@ extend-select = [
265272 " PT" , # flake8-pytest-style
266273 " PTH" , # flake8-use-pathlib
267274 " PYI" , # flake8-pyi
275+ " Q" , # flake8-quotes
268276 " RET" , # flake8-return
277+ " RSE" , # flake8-raise
269278 " RUF" , # Ruff-specific
270279 " S" , # eval -> literal_eval
271280 " SIM" , # flake8-simplify
281+ " SLOT" , # flake8-slots
282+ " T10" , # flake8-debugger
272283 " T20" , # flake8-print
273284 " TC" , # flake8-type-checking
274285 " TID251" , # flake8-tidy-imports.banned-api
275286 " TRY" , # tryceratops
276287 " UP" , # pyupgrade
277288 " YTT" , # flake8-2020
278- " FURB" , # refurb
279- " SLOT" , # flake8-slots
280- " DTZ" , # flake8-datetimez
281- " FA" , # flake8-future-annotations
282289]
283290ignore = [
284291 " ANN401" , # Disallow dynamically typed expressions
285- " ISC001" , # Conflicts with formatter
286292 " PLC0415" , # Import should be at top of file
287293 " PLE1205" , # Format check doesn't work with our custom logger
288294 " PLR09" , # Too many ...
0 commit comments