Ghost/.jshintrc
Katharina Irrgang 3e32a9c31d 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
2017-09-25 13:12:07 +01:00

28 lines
480 B
Plaintext

{
"node": true,
"browser": false,
"strict": false,
"sub": true,
"eqeqeq": true,
"laxbreak": true,
"bitwise": true,
"curly": true,
"forin": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": true,
"regexp": true,
"undef": true,
"unused": true,
"mocha": true,
"indent": 4,
"predef": [
"-Promise"
],
"esversion": 6
}