.agents/memory/2026-02-23-linting-the-signetai-monorepo.md

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:

  • root field is no longer supported (used in packages/ui/biome.json and apps/web/biome.json)
  • assist has been renamed to assists
  • includes field should be include
  • domains key is not a valid biome option
  • options configuration for noUnusedVariables rule is no longer supported
  • extends field 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.