mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
remove "array_syntax" option
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$finder = PhpCsFixer\Finder::create()
|
||||||
|
->in(__DIR__)
|
||||||
|
->exclude('var')
|
||||||
|
;
|
||||||
|
|
||||||
|
return PhpCsFixer\Config::create()
|
||||||
|
->setRules([
|
||||||
|
'@Symfony' => true,
|
||||||
|
])
|
||||||
|
->setFinder($finder)
|
||||||
|
;
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"aliases": ["cs-fixer", "php-cs-fixer"],
|
||||||
|
"copy-from-recipe": {
|
||||||
|
".php_cs.dist": ".php_cs.dist"
|
||||||
|
},
|
||||||
|
"gitignore": [
|
||||||
|
"/.php_cs",
|
||||||
|
"/.php_cs.cache"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user