Commit cf91887e authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Supprime .php_cs, qui venait interférer.

No related merge requests found
Showing with 2 additions and 15 deletions
+2 -15
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->files()
->name('*.php')
->name('.php_cs')
->in('.');
return Irstea\CS\Config::create()
->setRiskyAllowed(true)
->setIndent(' ')
->setLineEnding("\n")
->setFinder($finder);
<?php declare(strict_types = 1);
require_once __DIR__ . '/vendor/autoload.php';
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->files()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment