mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
bc558cf0d2
closes #2666 - Add new jshint:test task - Fix jshint errors
28 lines
555 B
Plaintext
28 lines
555 B
Plaintext
{
|
|
"node": true,
|
|
"browser": true,
|
|
"nomen": 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,
|
|
"trailing": true,
|
|
"indent": 4,
|
|
"onevar": true,
|
|
"white": true,
|
|
"quotmark": "single"
|
|
}
|