0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 23:43:09 +01:00
nodejs/test/.eslintrc

13 lines
232 B
Plaintext
Raw Normal View History

## Test-specific linter rules
rules:
## allow undeclared variables
no-undef: 0
## allow global Buffer usage
require-buffer: 0
## common module is mandatory in tests
required-modules: [2, "common"]
globals:
gc: false