Skip to content

Commit bc6ac84

Browse files
committed
feat(tests): disabled a couple of a11y rules for test files
1 parent c34d65e commit bc6ac84

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ module.exports = {
4040
'import/no-extraneous-dependencies': ['error', {devDependencies: true}],
4141
'react/prop-types': 'off',
4242
'react/jsx-props-no-spreading': 'off',
43-
'react/jsx-boolean-value': ['error', 'always']
43+
'react/jsx-boolean-value': ['error', 'always'],
44+
'jsx-a11y/click-events-have-key-events': 'off',
45+
'jsx-a11y/no-static-element-interactions': 'off'
4446
}
4547
}
4648
]

0 commit comments

Comments
 (0)