refactor: add no_unused_imports lint rule

Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
Saw-jan
2025-06-19 10:33:08 +05:45
parent 63470742fe
commit 4a798944f9
8 changed files with 2 additions and 11 deletions

View File

@@ -23,7 +23,8 @@ $config->setFinder($finder)
"return_type_declaration" => [
"space_before" => "none",
],
'single_space_around_construct' => true
'single_space_around_construct' => true,
'no_unused_imports' => true,
]
)
);