Files
wyczarujprezent.pl/modules/ps_facebook/.php-cs-fixer.dist.php
2024-10-28 22:14:22 +01:00

13 lines
209 B
PHP

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