From 4ad93cd0690aa201a5a0094caa02cce9a29476dc Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Fri, 5 Dec 2014 17:49:27 +0100 Subject: [PATCH] Fix: PHPCS --- dev/codesniffer/ruleset.xml | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/dev/codesniffer/ruleset.xml b/dev/codesniffer/ruleset.xml index 7e3057a6675..965790f9319 100755 --- a/dev/codesniffer/ruleset.xml +++ b/dev/codesniffer/ruleset.xml @@ -169,7 +169,42 @@ <rule ref="PEAR.Commenting.ClassComment.MissingTag"> <severity>0</severity> </rule> - + <rule ref="PEAR.Commenting.ClassComment.Missing@authorTag"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.ClassComment.Missing@categoryTag"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.ClassComment.Missing@licenseTag"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.ClassComment.Missing@linkTag"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.ClassComment.Missing@packageTag"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.FunctionComment.SpacingAfterParamType"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.FunctionComment.SpacingAfterParamName"> + <severity>0</severity> + </rule> + <!-- TODO Remove this and fix reported errors --> + <rule ref="PEAR.Commenting.ClassComment.Missing"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.FunctionComment.MissingReturn"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.FunctionComment.ReturnNotRequired"> + <severity>0</severity> + </rule> + <rule ref="PEAR.Commenting.FunctionComment.Missing"> + <severity>0</severity> + </rule> + + <!-- <rule ref="PEAR.Commenting.FileComment" /> <rule ref="PEAR.Commenting.FileComment.WrongStyle"> -- GitLab