rector/ecs-after-rector.yaml

29 lines
1.1 KiB
YAML
Raw Normal View History

2018-06-05 20:08:54 +02:00
services:
2017-11-02 18:21:09 +01:00
# remove unused "use" statements
2018-04-02 00:40:05 +02:00
PhpCsFixer\Fixer\Import\NoUnusedImportsFixer: ~
2017-11-05 20:36:55 +01:00
2017-11-02 18:21:09 +01:00
# order use statements A-Z
2018-04-02 00:40:05 +02:00
PhpCsFixer\Fixer\Import\OrderedImportsFixer: ~
2017-11-05 20:36:55 +01:00
2017-11-09 03:33:17 +01:00
# remove leading slash ("\") at imports
2018-04-02 00:40:05 +02:00
PhpCsFixer\Fixer\Import\NoLeadingImportSlashFixer: ~
2017-11-09 03:33:17 +01:00
2017-11-02 18:21:09 +01:00
# remove extra spaces from DocBlocks
2018-04-02 00:40:05 +02:00
PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer: ~
2017-11-05 20:36:55 +01:00
# clean empty doc blocks, e.g. after annotation removal
2018-04-02 00:40:05 +02:00
PhpCsFixer\Fixer\Phpdoc\NoEmptyPhpdocFixer: ~
2018-02-23 19:16:34 +01:00
2018-09-15 20:50:52 +02:00
# import namespaces for classes, constants and functions
# configuration: https://github.com/slevomat/coding-standard#slevomatcodingstandardnamespacesreferenceusednamesonly-
SlevomatCodingStandard\Sniffs\Namespaces\ReferenceUsedNamesOnlySniff:
searchAnnotations: true
2018-09-15 20:50:52 +02:00
allowFallbackGlobalFunctions: true
allowFallbackGlobalConstants: true
2018-02-27 15:10:13 +01:00
# add spaces between class elements
2018-10-23 18:57:56 +02:00
PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer: ~
# add declare strict types to start of the file
PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer: ~