12 lines
290 B
PHP
12 lines
290 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use TwigCsFixer\Config\Config;
|
|
use TwigCsFixer\Ruleset\Ruleset;
|
|
use TwigCsFixer\Standard\TwigCsFixer;
|
|
|
|
$ruleset = new Ruleset()->addStandard(new TwigCsFixer());
|
|
$config = new Config()
|
|
->allowNonFixableRules()
|
|
->setRuleset($ruleset);
|
|
|
|
return $config;
|