- Notifications
You must be signed in to change notification settings - Fork 165
Closed
Labels
Progress: good first issueIssues is easy to get started withIssues is easy to get started withacceptedNew rule is acceptedNew rule is acceptedevent: MageTestFest2019MageTestFest contributionsMageTestFest contributionsproposalNew rule proposalNew rule proposal
Description
Reason
Rules under Magento/Annotation
folder rely on token index instead of token content and do not verify findings (findPrevious
and findNext
can return false
). This leads to false-positive findings and and errors during execution (#38).
Solution
- Remove unstable
Magento/Annotation
sniffs. - Add out-of-box PHP CodeSniffer rules that cover the bigger part of functionality + add extra useful and efficient checks.
<!--Ensures doc blocks follow basic formatting.--> <rule ref="Generic.Commenting.DocComment"> <severity>5</severity> <type>warning</type> </rule> <!--Parses and verifies the class doc comment. Verifies that: - A class DocBlock comment exists. - The comment uses the correct DocBlock style. - There are no blank lines after the class comment. - No tags are used in the DocBlock.--> <rule ref="Squiz.Commenting.ClassComment"> <severity>5</severity> <type>warning</type> </rule> <!--Allow tags in the aforesaid sniff.--> <rule ref="Squiz.Commenting.ClassComment.TagNotAllowed"> <severity>0</severity> <type>warning</type> </rule> <!--Parses and verifies the doc comments for functions.--> <rule ref="Squiz.Commenting.FunctionComment"> <severity>5</severity> <type>warning</type> </rule> <!--Verifies that a @throws tag exists for each exception type a function throws.--> <rule ref="Squiz.Commenting.FunctionCommentThrowTag"> <severity>5</severity> <type>warning</type> </rule> <!--Parses and verifies the variable doc comment.--> <rule ref="Squiz.Commenting.VariableComment"> <severity>5</severity> <type>warning</type> </rule>
- Implement sniffs for missing rule:
@inheritdoc
formatting - issue [New Rule] Implement sniff for functions PHPDoc formatting #54
Bonus
Some of the OOB sniffs detect fixable issues that can be automatically fixed by phpcbf
tool.
buskamuza
Metadata
Metadata
Assignees
Labels
Progress: good first issueIssues is easy to get started withIssues is easy to get started withacceptedNew rule is acceptedNew rule is acceptedevent: MageTestFest2019MageTestFest contributionsMageTestFest contributionsproposalNew rule proposalNew rule proposal