Merge pull request #3945 from node-red-hitachi/fix-jshint-es-version

fix to allow es11 for jshint check
This commit is contained in:
Nick O'Leary 2022-11-07 21:10:26 +00:00 committed by GitHub
commit de8a5ea262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@
"shadow": true, // allow variable shadowing (re-use of names...)
"sub": true, // don't warn that foo['bar'] should be written as foo.bar
"proto": true, // allow setting of __proto__ in node < v0.12,
"esversion": 6 // allow es6
"esversion": 11 // allow es11(ES2020)
}