Masterclass: Strategies to make your automated checks reliable and robust

@chris_dabnor you heard correctly, there are tools you can get which can help enforce coding styles such as order of package imports, naming conventions, white spaces, etc… You configure which rules you want it to use, and whether you want to make the rules appear as warnings or errors (ie non-blocking or blocking). An example tool that works with C# is called StyleCop https://marketplace.visualstudio.com/items?itemName=ChrisDahlberg.StyleCop
I’m sure there are similar tools for other languages.