Biome Guidelines

SkillDocs & knowledge

Biome formatting and linting standards. Use when configuring Biome (biome.json) for fast formatting, linting, and sorting imports. NOT for Prettier or ESLint configuration. Do NOT trigger for generic formatting/linting tasks unless Biome is explicitly requested.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Biome Guidelines skill

What this skill tells your AI

The instructions your AI receives, as published by neverinfamous/memory-journal-mcp in skills/biome/SKILL.md and read by ahel’s review.

Biome is a high-performance toolchain for web projects, intended to replace Prettier and ESLint in modern codebases.

1. Configuration (biome.json)

  • Single Config: Define all rules in a unified biome.json at the root of the project.
  • Formatting Match: Configure Biome's formatter to match standard Prettier settings (e.g., lineWidth: 80, indentStyle: "space").
  • Import Sorting: Enable organizeImports to automatically sort and group imports on save.
{
  "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
  "formatter": {
    "enabled": true,
    "formatWithErrors": false,
    "indentStyle": "space",
    "indentWidth": 2,
    "lineWidth": 100
  },
  "organizeImports": {
    "enabled": true
  },
  "linter": {
    "enabled": true,
    "rules": {
      "recommended": true,
      "style": {
        "useImportType": "error"
      }
    }
  }
}

2. CI/CD Integration

  • Check Command: Run npx @biomejs/biome ci . in CI pipelines. This command checks formatting, runs the linter, and verifies import sorting all in one pass. It fails if any violations are found.
  • Pre-commit Hooks: Integrate biome check --write --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} into Husky/lint-staged to format code before committing.

3. Editor Integration

  • VS Code: Ensure the .vscode/settings.json sets Biome as the default formatter and enables "format on save" and "organize imports on save".
{
  "editor.defaultFormatter": "biomejs.biome",
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.organizeImports.biome": "explicit"
  }
}

Signals

GitHub stars
20
Forks
5
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
biome-neverinfamous
Source
github.com/neverinfamous/memory-journal-mcp