shopsys / biome-config
Shared Biome configuration for Shopsys Platform
v18.0.0
2025-12-29 13:37 UTC
This package is auto-updated.
Last update: 2026-03-11 16:43:55 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.