rector/ecs-after-rector.neon

16 lines
499 B
Plaintext
Raw Normal View History

2017-11-02 17:21:09 +00:00
checkers:
# remove unused "use" statements
- PhpCsFixer\Fixer\Import\NoUnusedImportsFixer
2017-11-05 19:36:55 +00:00
2017-11-02 17:21:09 +00:00
# order use statements A-Z
- PhpCsFixer\Fixer\Import\OrderedImportsFixer
2017-11-05 19:36:55 +00:00
2017-11-09 02:33:17 +00:00
# remove leading slash ("\") at imports
- PhpCsFixer\Fixer\Import\NoLeadingImportSlashFixer
2017-11-02 17:21:09 +00:00
# remove extra spaces from DocBlocks
- PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer
2017-11-05 19:36:55 +00:00
# clean empty doc blocks, e.g. after annotation removal
- PhpCsFixer\Fixer\Phpdoc\NoEmptyPhpdocFixer