shopsys/biome-config

Shared Biome configuration for Shopsys Platform

Installs: 1 600

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

pkg:composer/shopsys/biome-config

v17.0.0 2025-09-10 15:30 UTC

This package is auto-updated.

Last update: 2025-10-21 12:00:48 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.