From b812bbf0c3e12ad1d9deb67b24159f00786115fb Mon Sep 17 00:00:00 2001 From: Naoki Ikeguchi Date: Wed, 1 Feb 2023 14:03:45 +0900 Subject: [PATCH] build: Disable no_trailing_whitespace_in_string rule --- .php-cs-fixer.dist.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 97045d2..d8a6bf0 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -12,5 +12,8 @@ ; return (new Config()) + ->addRiskyRules([ + 'no_trailing_whitespace_in_string' => false, + ]) ->setFinder($finder) ;