Added eqnull parameter on jshint configuration
Tolerate use of `== null`, see also this [sample](https://github.com/jshint/jshint/blob/master/examples/.jshintrc)
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -3,7 +3,8 @@ | ... | @@ -3,7 +3,8 @@ |
3 | "browser": true, | 3 | "browser": true, |
4 | "debug": true, | 4 | "debug": true, |
5 | "devel": true, | 5 | "devel": true, |
6 | "eqeqeq": false, | 6 | "eqeq": true, |
7 | "eqnull" true, | ||
7 | "evil": true, | 8 | "evil": true, |
8 | "maxparams": 5, | 9 | "maxparams": 5, |
9 | "maxdepth": 3, | 10 | "maxdepth": 3, | ... | ... |
-
Please register or sign in to post a comment