1.2 KiB
1.2 KiB
2026-02-23 Session Notes
Linting the Signetai Monorepo
Ran bun run lint (biome check) on the signetai monorepo to identify and fix linting issues. The command completed with exit code 1, revealing two categories of problems:
Biome Configuration Errors
Multiple biome.json files in the references/supermemory directory contain obsolete or invalid configuration keys:
rootfield is no longer supported (used in packages/ui/biome.json and apps/web/biome.json)assisthas been renamed toassistsincludesfield should beincludedomainskey is not a valid biome optionoptionsconfiguration fornoUnusedVariablesrule is no longer supportedextendsfield expected an array but received a string
These errors are in reference packages (supermemory) that are not part of the main signetai workspace.
Package.json Formatting Issues
JSON formatting issues detected in multiple package.json files across the monorepo:
- packages/connector-base/package.json
- packages/connector-opencode/package.json
- Other connector packages
Biome's formatter would reformat these files with different spacing conventions.
Session appears incomplete — linting was performed but no fixes were applied.