https://github.com/shopsys/biome-config
[READ-ONLY] Shared Biome configuration for Shopsys Platform
https://github.com/shopsys/biome-config
Last synced: 6 months ago
JSON representation
[READ-ONLY] Shared Biome configuration for Shopsys Platform
- Host: GitHub
- URL: https://github.com/shopsys/biome-config
- Owner: shopsys
- License: mit
- Created: 2025-07-31T08:07:42.000Z (about 1 year ago)
- Default Branch: 17.0
- Last Pushed: 2025-09-08T13:59:48.000Z (11 months ago)
- Last Synced: 2025-09-08T15:41:06.012Z (11 months ago)
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# @shopsys/biome-config
Shared Biome configuration for Shopsys Platform.
## Usage
Install the package as a dev dependency:
```bash
npm install --save-dev @shopsys/biome-config
```
Create a `biome.json` file in your project that extends this configuration:
```json
{
"extends": ["@shopsys/biome-config"]
}
```
## Overriding Configuration
You can override any settings by adding them to your local `biome.json`:
```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.