Skip to content
This repository was archived by the owner on Mar 7, 2019. It is now read-only.

Commit 91ad0fa

Browse files
feat(rule): make no-shadow more strict
1 parent 069079a commit 91ad0fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

environments/shared/recommended.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,10 @@ module.exports = {
463463

464464
// Disallow Shadowing
465465
// This rule aims to eliminate shadowed variable declarations.
466-
'no-shadow': 'error',
466+
'no-shadow': ['error', {
467+
builtinGlobals: true,
468+
hoist: 'functions',
469+
}],
467470

468471
// Disallow Undeclared Variables
469472
// This rule can help you locate potential ReferenceErrors resulting from misspellings of

0 commit comments

Comments
 (0)