Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit 2e750d7

Browse files
committed
Merge pull request #3 from lumberj/patch-1
Suppress warnings on `const`
2 parents e5f1f5f + 582002e commit 2e750d7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

linters/jshintrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,8 @@
7777
"-W035": true,
7878

7979
// Suppress warnings about redefining parameters
80-
"-W004": true
80+
"-W004": true,
81+
82+
// Allow ES.next specific features such as `const`
83+
"esnext" true
8184
}

0 commit comments

Comments
 (0)