From b7e2baa004eb455a2dd1911497024af150f046a2 Mon Sep 17 00:00:00 2001 From: Maurizio Monticelli Date: Tue, 21 May 2024 13:32:43 +0200 Subject: [PATCH] feat: add PER-CS2.0 rule set #19 --- config/whatwedo-common.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/whatwedo-common.php b/config/whatwedo-common.php index 68a48cc..119457f 100644 --- a/config/whatwedo-common.php +++ b/config/whatwedo-common.php @@ -56,6 +56,8 @@ $ecsConfig->sets([SetList::COMMON]); $ecsConfig->sets([SetList::PSR_12]); + $ecsConfig->dynamicSets(['@PER-CS2.0']); + $ecsConfig->rule(ValidClassNameSniff::class); $ecsConfig->rule(ClassCommentSniff::class); $ecsConfig->rule(FileCommentSniff::class);