2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/.jshintrc
Katharina Irrgang bac8bcf978 🎨 jsHint: support ES6 features (#7920)
no issue
- add `eversion: 6` flag to `jshint` config
2017-01-31 13:13:23 +00:00

27 lines
482 B
Text

{
"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"
}