shopsys/biome-config

Shared Biome configuration for Shopsys Platform

17.0.x-dev 2025-07-31 11:35 UTC

This package is auto-updated.

Last update: 2025-07-31 11:40:31 UTC


README

Shared Biome configuration for Shopsys Platform.

Usage

Install the package as a dev dependency:

npm install --save-dev @shopsys/biome-config

Create a biome.json file in your project that extends this configuration:

{
    "extends": ["@shopsys/biome-config"]
}

Overriding Configuration

You can override any settings by adding them to your local biome.json:

{
    "extends": ["@shopsys/biome-config"],
    "files": {
        "includes": ["src/**/*.js", "!src/vendor/**"]
    }
}

Shared Configuration

This package includes the following Biome settings:

  • Formatter: 4 spaces, 120 line width, LF line endings
  • Linter: Recommended rules with specific adjustments for Shopsys codebase
  • JavaScript: Single quotes, semicolons, trailing commas

See index.json for the complete configuration.