12 lines
No EOL
428 B
PHP
12 lines
No EOL
428 B
PHP
<?php
|
|
|
|
$ruleset = new TwigCsFixer\Ruleset\Ruleset();
|
|
$ruleset->addStandard(new TwigCsFixer\Standard\Twig());
|
|
$ruleset->addRule(new TwigCsFixer\Rules\Whitespace\EmptyLinesRule());
|
|
$ruleset->addRule(new TwigCsFixer\Rules\Variable\VariableNameRule(TwigCsFixer\Rules\Variable\VariableNameRule::CAMEL_CASE));
|
|
|
|
$config = new TwigCsFixer\Config\Config();
|
|
$config->setRuleset($ruleset);
|
|
$config->allowNonFixableRules();
|
|
|
|
return $config; |