Conversation
Merge unique additions from refactor branch into dev: - Add pre-commit configuration (ruff, prettier, standard hooks) - Add lint workflow using pre-commit action - Add PyPI publish workflow with trusted publishing - Add report validation to test workflow - Add dev dependencies to pyproject.toml - Add CLAUDE.md with updated architecture documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Use modern type annotations (dict instead of Dict, list instead of List) - Use super() without arguments - Use contextlib.suppress() instead of try/except pass - Use f-strings instead of .format() - Remove unused imports 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add mypy to dev dependencies - Add [tool.mypy] config with ignore_missing_imports 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3 tasks
- Add return type hints to all functions - Add parameter type hints (using Any for interop types) - Import Any from typing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Member
Author
|
Let's merge this with failing tests. Can address them in a separate PR, I don't want this PR to balloon out of scope. At the moment it's fairly clean refactoring and repo health only. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
These additions were cherry-picked from the
claude/refactor-plugin-best-practices-xOSUSbranch, which had overlapping work withdev. The dev branch's architecture (hook-based plugin, module restructuring, new test data) was preserved, and only the unique CI/CD tooling from the refactor branch was merged in.Test plan
pre-commit run --all-files🤖 Generated with Claude Code