Skip to content

Commit

Permalink
feat: allow null for eqeqeq
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Aug 20, 2024
1 parent ac674eb commit 45aa55e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion projects/eslint-plugin-experience/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,13 @@ module.exports = {
properties: 'above',
},
],
eqeqeq: ['error', 'always'],
eqeqeq: [
'error',
'always',
{
null: 'ignore',
},
],
'func-style': [
'error',
'declaration',
Expand Down

0 comments on commit 45aa55e

Please sign in to comment.