From feb2dd30272312b9c7151d8bd818da71882a5767 Mon Sep 17 00:00:00 2001 From: JDGrimes Date: Fri, 4 May 2018 14:36:54 -0500 Subject: [PATCH] phpcs: exclude DocComment.SpacingBeforeTags rule It unfortunately flags even cases where there is no short or long description before the tags: ``` /** * @since 1.0.0 */ ``` Probably (inadvertently?) caused by https://github.com/squizlabs/PHP_CodeSniffer/issues/852 --- phpcs/WordPoints/ruleset.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpcs/WordPoints/ruleset.xml b/phpcs/WordPoints/ruleset.xml index 5d6bcaa..b9c0bfe 100644 --- a/phpcs/WordPoints/ruleset.xml +++ b/phpcs/WordPoints/ruleset.xml @@ -43,6 +43,8 @@ + +