feat: Add Biome linting, upgrade to Node 20, and add CI workflows#3
Merged
scottlovegrove merged 1 commit intomainfrom Jan 22, 2026
Merged
feat: Add Biome linting, upgrade to Node 20, and add CI workflows#3scottlovegrove merged 1 commit intomainfrom
scottlovegrove merged 1 commit intomainfrom
Conversation
- Add @biomejs/biome 2.3.9 with 4-space indentation for all files - Upgrade from Node 18 to Node 20 (.nvmrc and package.json engines) - Hybrid approach: Biome for code/JSON, Prettier for markdown/YAML/CSS - Add separate lint.yml and test.yml CI workflows - Update lefthook for file-specific linting (biome + prettier) - Fix Node.js import protocols, eliminate unused imports/variables - Achieve 100% type safety (zero any usage) - Update format scripts for unified Biome/Prettier workflow Co-Authored-By: Claude Sonnet 4 <[email protected]>
github-actions Bot
pushed a commit
that referenced
this pull request
Jan 22, 2026
# 1.0.0 (2026-01-22) ### Bug Fixes * add UTF-8 charset to OAuth callback HTML responses ([#8](#8)) ([fcb2d49](fcb2d49)) ### Features * Add Biome linting, upgrade to Node 20, and add CI workflows ([#3](#3)) ([57f802e](57f802e)) * add loading animations with global API proxy integration ([#7](#7)) ([bf53bfb](bf53bfb)) * Add OAuth authentication with dynamic client registration ([#6](#6)) ([2845ebd](2845ebd)), closes [#5](#5) * add semantic release automation for NPM publishing ([#10](#10)) ([c756324](c756324)) * Refactor login command to auth with status/logout subcommands ([#4](#4)) ([59e6493](59e6493))
|
🎉 This PR is included in version 1.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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
This PR modernizes the codebase with comprehensive linting, formatting, and CI/CD improvements. It adds Biome linting (matching todoist-ai configuration), upgrades to Node 20, and establishes robust CI pipelines for code quality assurance.
Key Changes
🎯 Biome Linting Setup
@biomejs/biome2.3.9 with exact todoist-ai configurationnpm run formathandles both tools seamlessly🚀 Node.js Upgrade
package.jsonengines and add.nvmrc✨ Type Safety Improvements
anyusage (100% type-safe codebase)node:imports)🛠 Git Hooks & Automation
*.{ts,js,json}files in pre-commit*.{md,yml,yaml,css}files in pre-commit🤖 CI/CD Pipeline
lint.yml- Type checking, linting, and formatting validationtest.yml- Build verification and test executionCode Quality Metrics
Before vs After
anyusage → 0anyusageVerification
Migration Details
Breaking Changes
Developer Experience
npm run formathandles everythingTesting
All functionality verified:
🤖 Generated with Claude Code