Skip to content

Commit 073a0c7

Browse files
GeneAIclaude
authored andcommitted
fix: Add ruff isort known-first-party config
Configure ruff to recognize project modules as first-party imports to fix import ordering in backend/api files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 0e9d362 commit 073a0c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ ignore = [
232232
"C901", # too complex
233233
]
234234

235+
[tool.ruff.lint.isort]
236+
known-first-party = ["services", "empathy_llm_toolkit", "empathy_software_plugin", "empathy_os", "coach_wizards"]
237+
235238
[tool.ruff.lint.per-file-ignores]
236239
"__init__.py" = ["F401"] # unused imports in __init__.py
237240

0 commit comments

Comments
 (0)