Files

12 lines
179 B
PHP
Raw Permalink Normal View History

2026-04-09 18:31:51 +02:00
<?php
$config = new PrestaShop\CodingStandards\CsFixer\Config();
$config
->setUsingCache(true)
->getFinder()
->in(__DIR__)
->exclude('vendor');
return $config;