Files
newwalls.pl/modules/ps_eventbus/.php_cs.dist
2024-12-17 13:43:22 +01:00

12 lines
208 B
PHP

<?php
$config = new PrestaShop\CodingStandards\CsFixer\Config();
$config
->setUsingCache(true)
->getFinder()
->in(__DIR__)
->exclude('translations')
->exclude('vendor');
return $config;