Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
added .jshintrc file to pass jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
disordinary authored and kevinansfield committed Mar 2, 2017
1 parent 4410eb3 commit a70863e
Show file tree
Hide file tree
Showing 2 changed files with 4,970 additions and 0 deletions.
32 changes: 32 additions & 0 deletions lib/ghost-editor/.jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"predef": [
"document",
"window",
"-Promise"
],
"browser": true,
"boss": true,
"curly": true,
"debug": false,
"devel": true,
"eqeqeq": true,
"evil": true,
"forin": false,
"immed": false,
"laxbreak": false,
"newcap": true,
"noarg": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"sub": true,
"strict": false,
"white": false,
"eqnull": true,
"esnext": true,
"unused": true
}

0 comments on commit a70863e

Please sign in to comment.