The increase in timeout should be applied only if you have good reasons (complex data, remote connection, etc.), but most scenarios are quickly analyzed.
Potential solution for your problem: You are not providing a code standard as a parameter, so make sure PHPStorm calls phpcs with the correct coding standard, so the --standard parameter can cause problems.
In PHPStorm under "Settings-> Editor->" Inspections ", expand the" PHP "node and go to the PHP Sniffer check. There you should find a drop-down list with the inscription" Coding Standard ".
I would not recommend using MyServer as the default value unless you have a good reason, instead choose PSR2, for example.
The following command will be issued by PHPStorm, in this case:
phpcs.bat index.php
source share