Merge pull request #12893 from Snuffleupagus/eslint-no-use-before-define

Enable, a basic version of, the ESLint `no-use-before-define` rule
This commit is contained in:
Tim van der Meij 2021-01-23 18:46:36 +01:00 committed by GitHub
commit 7102e4a5c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,6 +139,11 @@
"vars": "local",
"args": "none",
}],
"no-use-before-define": ["error", {
"functions": false,
"classes": false,
"variables": false,
}],
// Node.js and CommonJS
"no-buffer-constructor": "error",