chore(all): Fix lint findings and ignore installed skill dirs#191
Open
enko wants to merge 1 commit into
Open
Conversation
Resolve the three Biome lint findings in project source: - auth.ts: capture the auth pool in a local const so the create hook no longer needs a non-null assertion on the module-level let - relationship-edit-form.svelte: guard getData() with an explicit null check instead of a non-null assertion - url-row.test.ts: drop the unused fireEvent import Also gitignore .claude/skills and .github/skills. These hold a locally installed Claude Code skill (impeccable), not project source, and nothing in the repo depends on them. Biome's useIgnoreFile then skips them too, so no separate lint exclusion is needed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Coverage Report
|
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.
What
Clears the Biome lint findings in project source and stops local Claude Code skill installs from polluting lint/git.
Lint fixes
constso the create hook no longer needs a non-null assertion on the module-levelletgetData()with an explicit null check instead of a non-null assertionfireEventimportSkill dirs
.claude/skillsand.github/skills— these hold a locally installed skill (impeccable), not project source, and nothing in the repo depends on them. Biome'suseIgnoreFilethen skips them too, so no separate lint exclusion is needed.Notes
editor/inline-preview/inline-preview.ts(already in the ignore list) is unrelated and untouched.Test
npx biome lint .— clean🤖 Generated with Claude Code