docs: add CONTRIBUTING, issue/PR templates, and .editorconfig - #16
Merged
kjellberg merged 1 commit intoJun 7, 2026
Merged
Conversation
Add contributor on-ramp files to lower the barrier to contributing: - CONTRIBUTING.md covering setup, dev loop, coding standards, branch/PR workflow, and the Node 20/22/24 CI requirements. - Bug report and feature request issue templates capturing kiqr version, OS, Docker version, and repro/expected/actual details. - Pull request template with summary, type of change, testing, and a typecheck/test/build checklist. - .editorconfig enforcing 2-space indent, LF, UTF-8, trimmed trailing whitespace, and a final newline. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
kjellbergzoey
added a commit
to kjellbergzoey/cli
that referenced
this pull request
Jun 7, 2026
Adds @biomejs/biome with a project config (biome.json): 2-space indent, single quotes, no bracket spacing, organize-imports, recommended lint rules (with a few project-specific rules disabled where they clash with the strict tsconfig or Ink/React patterns). Adds 'lint' and 'format' npm scripts and a dedicated lint job in CI. The large diff is the one-time 'biome check --write' format pass over the existing codebase. Two lint fixes beyond formatting: a string-concat -> template literal in db/list.tsx, and an empty destructure pattern in wp.tsx. Rebuilt on current main (post kiqr#11-kiqr#16) to resolve merge conflicts. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
kjellberg
pushed a commit
that referenced
this pull request
Jun 7, 2026
Adds @biomejs/biome with a project config (biome.json): 2-space indent, single quotes, no bracket spacing, organize-imports, recommended lint rules (with a few project-specific rules disabled where they clash with the strict tsconfig or Ink/React patterns). Adds 'lint' and 'format' npm scripts and a dedicated lint job in CI. The large diff is the one-time 'biome check --write' format pass over the existing codebase. Two lint fixes beyond formatting: a string-concat -> template literal in db/list.tsx, and an empty destructure pattern in wp.tsx. Rebuilt on current main (post #11-#16) to resolve merge conflicts. Co-authored-by: kjellbergzoey <kjellbergzoey@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
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
Pure additive documentation and tooling — no source changes. These files lower the contributor on-ramp toward the agency-standard goal of a self-service, well-documented repo.
What's included
npm install), the dev loop (npm run dev/build/test/typecheck), coding standards, the Biome lint/format flow (referenced asnpm run lint/npm run format, landing via chore: adopt Biome for linting and formatting #10), the branch + PR workflow, and the requirement that CI (typecheck/test/build on Node 20/22/24) must pass.Everything was verified accurate against this repo's
package.json,Makefile, and.github/workflows/ci.yml.How tested
No source changed, but verified the repo is still green:
npm run typecheckpassesnpm testpasses (70 tests, 14 files)npm run buildpassesType of change
🤖 Generated with Claude Code