Add default config for php-cs-fixer and a hook to run it on save.
This commit is contained in:
@ -30,7 +30,22 @@
|
|||||||
;; PHPUnit
|
;; PHPUnit
|
||||||
(use-package phpunit)
|
(use-package phpunit)
|
||||||
|
|
||||||
(use-package php-cs-fixer)
|
(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 '())
|
||||||
|
:hook (before-save . php-cs-fixer-before-save)
|
||||||
|
)
|
||||||
|
|
||||||
(provide 'lang-php)
|
(provide 'lang-php)
|
||||||
;;; lang-php.el ends here
|
;;; lang-php.el ends here
|
||||||
|
Reference in New Issue
Block a user