We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
== null
1 parent 2dfd520 commit d06147dCopy full SHA for d06147d
packages/eslint-config-airbnb-base/rules/best-practices.js
@@ -20,7 +20,8 @@ module.exports = {
20
// enforces consistent newlines before or after dots
21
'dot-location': 0,
22
// require the use of === and !==
23
- 'eqeqeq': 2,
+ // http://eslint.org/docs/rules/eqeqeq
24
+ 'eqeqeq': [2, 'allow-null'],
25
// make sure for-in loops have an if statement
26
'guard-for-in': 2,
27
// Blacklist certain identifiers to prevent them being used
0 commit comments