jshintrc: use type Number for esversion (#9049)

no issue

- refs http://jshint.com/docs/options/
- the value is a Number, not a String
- e.g. if you use template strings, jshint complains
This commit is contained in:
Katharina Irrgang 2017-09-25 14:12:07 +02:00 committed by Kevin Ansfield
parent 1dd365778f
commit 3e32a9c31d

View File

@ -23,5 +23,5 @@
"predef": [
"-Promise"
],
"esversion": "6"
"esversion": 6
}