<?php

$config = new PrestaShop\CodingStandards\CsFixer\Config();

$config
    ->setUsingCache(false)
    ->getFinder()
    ->in(__DIR__)
    ->exclude(['vendor', 'tests/integration/module-samples', 'tests/integration/expected']);

return $config;
