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