diff options
Diffstat (limited to 'test/.eslintrc')
-rw-r--r-- | test/.eslintrc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/.eslintrc b/test/.eslintrc index d5d95584ea..608c62dff5 100644 --- a/test/.eslintrc +++ b/test/.eslintrc @@ -3,3 +3,10 @@ rules: ## allow unreachable code no-unreachable: 0 + ## allow undeclared variables + no-undef: 0 + ## allow global Buffer usage + require-buffer: 0 + +globals: + gc: false |