Skip to content

Commit 53d97a2

Browse files
committed
Enable ruff ISC ruleset that warns about implict string concatenation
1 parent 704c5b0 commit 53d97a2

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
@@ -187,7 +187,7 @@ select = [
187187
"ICN", # flake8-import-conventions (force idiomatic import conventions for certain modules typically imported as something else)
188188
# "INP", # flake8-no-pep420 (warn about files in the implicit namespace - i.e. force creation of __init__.py files to make packages)
189189
"INT", # flake8-gettext (warnings that only apply when you are internationalizing your strings)
190-
# "ISC", # flake8-implicit-str-concat (warnings related to implicit vs explicit string concatenation)
190+
"ISC", # flake8-implicit-str-concat (warnings related to implicit vs explicit string concatenation)
191191
# "LOG", # flake8-logging (warn about potential logger issues, but very pedantic)
192192
# "N", # pep8-naming (force idiomatic naming for classes, functions/methods, and variables/arguments)
193193
"NPY", # NumPy specific rules

0 commit comments

Comments
 (0)