fix to allow es11 for jshint check

This commit is contained in:
Hiroyasu Nishiyama 2022-11-07 10:42:07 +09:00
parent 7da3773f7f
commit 11ad03b21e
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)
}