summaryrefslogtreecommitdiff
path: root/test/.eslintrc
blob: 5d77a660f887627e830690aa7b294e1b06e1ad08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## 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