Skip to content

Commit

Permalink
Enable F405 except in demos
Browse files Browse the repository at this point in the history
  • Loading branch information
jwallwork23 committed Dec 24, 2024
1 parent 50e5d87 commit 9677cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ select = [
]
ignore = [
"C901", # function is too complex (TODO #165: enable this)
"F405", # name may be undefined, or defined from star imports
]
[tool.ruff.lint.per-file-ignores]
"demos/burgers-hessian.py" = [
Expand All @@ -61,6 +60,7 @@ ignore = [
"demos/*.py" = [
"E402", # module level import not at top of file
"F403", # unable to detect undefined names
"F405", # name may be undefined, or defined from star imports
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit 9677cd1

Please sign in to comment.