I have multiple sub-projects inside a main project, and just one works fine with PHP CS Fixer.
Is it possible to exclude certain directories from PHP CS Fixer in PhpStorm 2023.1.2?
I have multiple sub-projects inside a main project, and just one works fine with PHP CS Fixer.
Is it possible to exclude certain directories from PHP CS Fixer in PhpStorm 2023.1.2?
Copyright © 2021 Jogjafile Inc.
PHP CS Fixer (as well as other Code Quality tools), they report the results back to the IDE using the Inspections mechanics. Since it's an inspection, it means that you can use scopes...
From https://www.jetbrains.com/help/phpstorm/code-inspection.html
So what you can do is:
(The image is taken from a similar ticket. It's not exactly what I'm talking here but very close and gives clear idea on how it should be done)