<?php

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

$config
    ->setUsingCache(false)
    ->getFinder()
    ->in(__DIR__)
    ->exclude('vendor')
    ->exclude('tests');

return $config;
