Current File : //var/www/prestashop/modules/ps_facebook/.php-cs-fixer.dist.php
<?php

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

$config
    ->setUsingCache(true)
    ->getFinder()
    ->in(__DIR__)
    ->exclude('translations')
    ->exclude('vendor');

return $config;