refactor(php-cs-fixer): Move rules to external config file
This commit is contained in:
@ -32,18 +32,8 @@
|
||||
|
||||
(use-package php-cs-fixer
|
||||
:custom
|
||||
(php-cs-fixer-rules-level-part-options (list (json-encode '(("@PSR12" . t)
|
||||
("ordered_imports" . (("sort_algorithm" . "alpha")))
|
||||
("concat_space" . (("spacing" . "one")))
|
||||
("whitespace_after_comma_in_array" . t)
|
||||
("align_multiline_comment" . t)
|
||||
("no_unused_imports" . t)
|
||||
("phpdoc_align" . t)
|
||||
("phpdoc_indent" . t)
|
||||
("no_useless_return" . t)
|
||||
("return_assignment" . t)
|
||||
("trailing_comma_in_multiline" . t)))))
|
||||
(php-cs-fixer-rules-fixer-part-options '())
|
||||
(php-cs-fixer-config-option (expand-file-name
|
||||
(concat user-emacs-directory "php-cs-fixer-config")))
|
||||
;; :hook (before-save . php-cs-fixer-before-save)
|
||||
)
|
||||
|
||||
|
24
php-cs-fixer-config
Normal file
24
php-cs-fixer-config
Normal file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/php
|
||||
<?php
|
||||
|
||||
error_reporting(E_ALL);
|
||||
|
||||
$finder = \PhpCsFixer\Finder::create();
|
||||
|
||||
$config = new \PhpCsFixer\Config();
|
||||
$config->setRules([
|
||||
'@PSR12' => true,
|
||||
'ordered_imports' => ['sort_algorithm' => 'alpha'],
|
||||
'concat_space' => ['spacing' => 'one'],
|
||||
'whitespace_after_comma_in_array' => true,
|
||||
'align_multiline_comment' => true,
|
||||
'no_unused_imports' => true,
|
||||
'phpdoc_align' => true,
|
||||
'phpdoc_indent' => true,
|
||||
// 'psr_autoloading' => true,
|
||||
'no_useless_return' => true,
|
||||
'return_assignment' => true,
|
||||
'trailing_comma_in_multiline' => true,
|
||||
])->setRiskyAllowed(true);
|
||||
|
||||
return $config->setFinder($finder);
|
Reference in New Issue
Block a user