mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
Merge pull request #4845 from jaswilli/jshint
Remove jshint rules that are no longer supported
This commit is contained in:
commit
cea358bff0
4 changed files with 3 additions and 14 deletions
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"node": true,
|
||||
"browser": false,
|
||||
"nomen": false,
|
||||
"strict": false,
|
||||
"sub": true,
|
||||
"eqeqeq": true,
|
||||
|
@ -19,9 +18,6 @@
|
|||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"trailing": true,
|
||||
"indent": 4,
|
||||
"onevar": true,
|
||||
"white": true,
|
||||
"predef": [ "-Promise" ]
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"node": false,
|
||||
"browser": true,
|
||||
"nomen": false,
|
||||
"bitwise": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
|
@ -16,11 +15,8 @@
|
|||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"trailing": true,
|
||||
"indent": 4,
|
||||
"esnext": true,
|
||||
"onevar": true,
|
||||
"white": true,
|
||||
"quotmark": "single",
|
||||
"globals": {
|
||||
"Ember": true,
|
||||
|
@ -32,5 +28,6 @@
|
|||
"ic": true,
|
||||
"NProgress": true,
|
||||
"moment": true
|
||||
}
|
||||
},
|
||||
"predef": ["-Notification"]
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"node": true,
|
||||
"browser": true,
|
||||
"nomen": false,
|
||||
"strict": false,
|
||||
"sub": true,
|
||||
"eqeqeq": true,
|
||||
|
@ -19,10 +18,7 @@
|
|||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"trailing": true,
|
||||
"indent": 4,
|
||||
"onevar": true,
|
||||
"white": true,
|
||||
"quotmark": "single",
|
||||
"predef": [ "-Promise" ]
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
"grunt-contrib-compress": "~0.11.0",
|
||||
"grunt-contrib-concat": "~0.5.0",
|
||||
"grunt-contrib-copy": "~0.5.0",
|
||||
"grunt-contrib-jshint": "~0.10.0",
|
||||
"grunt-contrib-jshint": "~0.11.0",
|
||||
"grunt-contrib-uglify": "~0.6.0",
|
||||
"grunt-contrib-watch": "~0.6.1",
|
||||
"grunt-docker": "~0.0.8",
|
||||
|
|
Loading…
Reference in a new issue