Skip to content

Commit 9c035e4

Browse files
committed
Enable ruff FIX ruleset that warns about FIXME or TODO in code
1 parent 5667864 commit 9c035e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ select = [
179179
"FA", # flake8-future-annotations (warn if certain from __future__ imports are used but missing)
180180
"FAST", # FastAPI specific warnings
181181
# "FBT", # flake8-boolean-trap (force all boolean arguments passed to functions to be keyword arguments and not positional)
182-
# "FIX", # flake8-fixme (warn about lines containing FIXME, TODO, XXX, or HACK)
182+
"FIX", # flake8-fixme (warn about lines containing FIXME, TODO, XXX, or HACK)
183183
"FLY", # flynt (automatically convert from old school string .format to f-strings)
184184
# "FURB", # refurb (A tool for refurbishing and modernizing Python codebases)
185185
"G", # flake8-logging-format (warn about logging statements using outdated string formatting methods)

0 commit comments

Comments
 (0)