- Disallow synchronous methods
This rule is aimed at preventing synchronous methods from being called in Node.js. It looks specifically for the method suffix “Sync” (as is the convention with Node.js operations).
Allows synchronous methods at the top level of a file, outside of any functions.
You can check them out here.