Skip to content

Commit f0c9ab3

Browse files
committed
ESLint: Disable unicorn/prefer-dom-node-dataset rule
1 parent 5282c52 commit f0c9ab3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ module.exports = {
8484
rules: {
8585
// disabled because of our nested `prepare()` functions
8686
'unicorn/consistent-function-scoping': 'off',
87+
// disabled because of false positives with `assert.dom(…).hasAttribute(…)`
88+
'unicorn/prefer-dom-node-dataset': 'off',
8789
},
8890
},
8991

0 commit comments

Comments
 (0)