如何为phpcs添加多个路径?

k0p*_*kus 4 php codesniffer phpcs

我想配置多个已安装的路径phpcs.

我可以通过以下方式添加:

phpcs --config-set installed_paths the/dir/to/standard

我尝试使用添加多个:但它不起作用并且手册页不存在且帮助不那么有用.

k0p*_*kus 13

使用以逗号分隔的列表:

phpcs --config-set installed_paths first/path/,second/path/,yet/another/path/
Run Code Online (Sandbox Code Playgroud)