A Symfony Bundle to easily download and use Oxlint (from the Oxc project) in your Symfony applications, to lint your front assets without needing Node.js (ex: when using Symfony AssetMapper).
Tip
If you prefer to use Biome.js instead, check Kocal/BiomeJsBundle!
Install the bundle with Composer:
composer require kocal/oxlint-bundle --devIf you use Symfony Flex, everything must be configured automatically. If that's not the case, please follow the next steps:
Manual installation steps
- Register the bundle in your 
config/bundles.phpfile: 
return [
    // ...
    Kocal\OxlintBundle\KocalOxlintBundle::class => ['dev' => true],
];- Create the configuration file 
config/packages/kocal_oxlint.yaml: 
when@dev:
    kocal_oxlint:
        # The Oxlint binary version to use, that you can find at https://github.com/oxc-project/oxc/tags,
        # it follows the pattern "oxlint_v<binary_version>"
        binary_version: '1.8.0'- Create the recommended 
.oxlintrc.jsonfile at the root of your project: 
{
  "ignorePatterns": [
    "assets/vendor/**",
    "public/assets/**",
    "public/bundles/**",
    "var/**",
    "vendor/**"
  ]
}The bundle is configured in the config/packages/kocal_oxlint.yaml file:
when@dev:
    kocal_oxlint:
        # The Oxlint binary version to use, that you can find at https://github.com/oxc-project/oxc/tags,
        # it follows the pattern "oxlint_v<binary_version>"
        binary_version: '1.8.0'Download the Oxlint binary for your configured version and for your platform (Linux, macOS, Windows).
By default, the command will download the binary in the bin/ directory of your project.
php bin/console oxlint:download
bin/oxlint --version
# or, with a custom destination directory
php bin/console oxlint:download path/to/bin
path/to/bin/oxlint --version