1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Enhancement: Enable no_trailing_whitespace fixer

Closes GH-636.
This commit is contained in:
Andreas Möller
2022-07-11 19:54:57 +02:00
committed by GitHub
parent 26e53d3af2
commit 1b3e0e41c4

View File

@@ -9,6 +9,8 @@ $finder = $config->getFinder()
->in(__DIR__)
->name(__FILE__);
$config->setRules([]);
$config->setRules([
'no_trailing_whitespace' => true,
]);
return $config;