node.md

August 7, 2026 ยท View on GitHub

Node

Callback return

enforce return after a callback

:x: Disabled


Global require

require all requires be top-level

:white_check_mark: Enabled (error)


Handle callback err

enforces error handling in callbacks (node environment)

:x: Disabled


No mixed requires

disallow mixing regular variable and require declarations

:x: Disabled


No new require

disallow use of new operator with the require function

:x: Disabled


No path concat

disallow string concatenation with **dirname and **filename

:x: Disabled


No process env

disallow use of process.env

:x: Disabled


No process exit

disallow process.exit()

:x: Disabled


No restricted modules

restrict usage of specified node modules

:x: Disabled


No sync

disallow use of synchronous methods (off by default)

:x: Disabled