forked from balderdashy/sails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
623481b
commit bfa1401
Showing
10 changed files
with
359 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,47 @@ | ||
{ | ||
"bitwise": true, | ||
"camelcase": true, | ||
"node": true, | ||
"undef": true, | ||
"unused": true, | ||
"curly": true, | ||
"immed": true, | ||
"latedef": true, | ||
"noarg": true, | ||
"noempty": true, | ||
"plusplus": true, | ||
"quotmark": "single", | ||
"trailing": true, | ||
"asi": false, | ||
"eqnull": true, | ||
"eval": true, | ||
// To fix column positions for JSHint errors you may want to add `"indent": 1` to your | ||
// **User** "jshint_options". This issue affects users with tabs for indentation. | ||
// This fix was reverted due to a conflict with using the `"white": true` option. | ||
// "indent": 1, | ||
"evil": true, | ||
"regexdash": true, | ||
"browser": true, | ||
"wsh": true, | ||
"sub": true, | ||
"supernew": true, | ||
"eqeqeq": true, | ||
"eqnull": true | ||
|
||
// Suppress warnings about mixed tabs and spaces | ||
"smarttabs": true, | ||
|
||
// Suppress warnings about trailing whitespace | ||
"trailing": false, | ||
|
||
// Suppress warnings about the use of expressions where fn calls or assignments are expected | ||
"expr": true, | ||
|
||
// Suppress warnings about using functions inside loops (useful for inifinityCounters) | ||
"loopfunc": true, | ||
|
||
// Suppress warnings about using assignments where conditionals are expected | ||
"boss": true | ||
|
||
// "bitwise": true, | ||
// "camelcase": true, | ||
// "node": true, | ||
// "undef": true, | ||
// "unused": true, | ||
// "curly": true, | ||
// "immed": true, | ||
// "latedef": true, | ||
// "noarg": true, | ||
// "noempty": true, | ||
// "plusplus": true, | ||
// "quotmark": "single", | ||
// "trailing": true, | ||
// "asi": false, | ||
// "eqnull": true, | ||
// "eval": true, | ||
// "sub": true, | ||
// "supernew": true, | ||
// "eqeqeq": true, | ||
// "eqnull": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.