DEV Community

Discussion on: Pull requests reivews

Collapse
 
gayanhewa profile image
Gayan Hewa

For an instance for code style checks I use prettifier, PHP code sniffer, etc

In your case you might be able to find a decent linter for the style rules you want in the code base.

Githubs super linter has support for most languages. And there is also a GitHub action that will help you automate this process. This would be a good starting point.

github.com/github/super-linter

Thread Thread
 
fmmricardo profile image
Ricardo Martins

Thanks 👍