Skip to content

Commit

Permalink
clarify remaining improperly scoped (and deprecated) inits
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Aug 31, 2024
1 parent 1fe04a7 commit 4a9d04b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@ select = ["F401"] # TODO: eventually, expand to other 'I', 'D', and other 'F' li
fixable = ["ALL"]

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["I"] # Must maintain explicit order for imports for check registration
"nwbinspector/__init__.py" = ["F401", "I"] # Temporarily keeping all exposure for back-compatibility
"inspector_tools/__init__.py" = ["F401", "I"] # Temporarily keeping all exposure for back-compatibility
"src/nwbinspector/__init__.py" = ["I"] # Must maintain explicit order for imports for check registration
"src/nwbinspector/utils/__init__.py" = ["F401", "I"] # Several items planned for long-term deprecation

# Temporarily keeping all exposure below for back-compatibility
# Deprecation scheduled for 9/15/2024
"src/nwbinspector/nwbinspector/__init__.py" = ["F401", "I"]
"src/nwbinspector/inspector_tools/__init__.py" = ["F401", "I"]
"src/nwbinspector/version/__init__.py" = ["F401", "I"]
"src/nwbinspector/register_checks/__init__.py" = ["F401", "I"]


[tool.codespell]
Expand Down

0 comments on commit 4a9d04b

Please sign in to comment.