Skip to content

Commit

Permalink
Merge pull request #100 from bigbinary/100-eqeqeq
Browse files Browse the repository at this point in the history
[ESLINT] .eslintrc should warn if double equal is used. One should use triple equal
  • Loading branch information
neerajsingh0101 committed Aug 3, 2015
2 parents 30fa4d5 + eeec9c0 commit 3518318
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
"space-before-blocks": [2],

// Don't warn if camelcase variable names are used. PR #96
"camelcase": [0]
"camelcase": [0],

// Prefer === over ==. PR #100
"eqeqeq": [2]

}
}

0 comments on commit 3518318

Please sign in to comment.