kocal/biome-js-bundle

Use Biome.js with Symfony

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 1

Type:symfony-bundle

v1.0.2 2024-05-26 08:06 UTC

This package is auto-updated.

Last update: 2024-05-26 08:06:52 UTC


README

.github/workflows/ci.yaml

This bundle makes it easy to use Biome.js in your Symfony project, to lint and format your assets files without Node.js (ex: when using Symfony's AssetMapper Component).

Installation

Install the bundle with Composer:

composer require kocal/biome-js-bundle --dev

The bundle should have been automatically enabled in your Symfony application (config/bundles.php). If that's not the case, you can enable it manually:

// config/bundles.php
return [
    // ...
    Kocal\BiomeJsBundle\KocalBiomeJsBundle::class => ['dev' => true],
];

Configuration

If you want to use a specific version of Biome.js, you can configure it in your config/packages/kocal_biome_js.yaml:

kocal_biome_js:
    version: v1.7.3

To configure Biome.js it-self, you must create a biome.json file at the root of your project.

A recommended configuration for Symfony projects is to ignore files from assets/vendor/, vendor/ and public/bundles/:

{
  "files": {
    "ignore": [
      "assets/vendor/*",
      "vendor/*",
      "public/bundles/*"
    ]
  }
}

Usage

The latest Biome.js CLI binary is automatically installed (if not already installed) when running one of the biome:* command.

biome:check

Runs formatter, linter and import sorting to the requested files.

# Shows format and lint errors
php bin/console biome:check .

# Shows format and lint errors, and fix them if possible
php bin/console biome:check . --apply

biome:ci

Command to use in CI environments. Runs formatter, linter and import sorting to the requested files.

Files won't be modified, the command is a read-only operation.

# Shows format and lint errors
php bin/console biome:ci .