Skip to content

Commit

Permalink
Changing linting config.
Browse files Browse the repository at this point in the history
  • Loading branch information
henvic committed Nov 4, 2015
1 parent 2923077 commit bc783ee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
16 changes: 12 additions & 4 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"preset": "crockford",
"disallowKeywordsOnNewLine": null,
"disallowDanglingUnderscores": null,
"esnext": true,
"preset": "crockford",
"disallowKeywordsOnNewLine": null,
"disallowDanglingUnderscores": false,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"requireSpaceAfterKeywords": null,
"validateQuoteMarks": "'"
"requireMultipleVarDecl": null,
"requireVarDeclFirst": false,
"disallowMultipleVarDecl": false,
"excludeFiles": [
"node_modules"
]
}
13 changes: 4 additions & 9 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
{
"node": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"es5": false,
"esnext": true,
"expr": true,
"forin": true,
"funcscope": false,
"globalstrict": false,
"iterator": false,
"latedef": true,
"noarg": true,
"node": true,
"nomen": false,
"onevar": true,
"passfail": false,
"nonew": true,
"shadow": false,
"smarttabs": false,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"white": false
}
"unused": true
}

0 comments on commit bc783ee

Please sign in to comment.