mirror of
https://github.com/github/codeql-action.git
synced 2025-12-23 15:50:11 +08:00
47 lines
1.7 KiB
JavaScript
47 lines
1.7 KiB
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
plugins: ['github', 'jsx-a11y'],
|
|
extends: ['plugin:jsx-a11y/recommended'],
|
|
rules: {
|
|
'jsx-a11y/role-supports-aria-props': 'off', // Override with github/a11y-role-supports-aria-props until https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/910 is resolved
|
|
'github/a11y-aria-label-is-well-formatted': 'error',
|
|
'github/a11y-no-visually-hidden-interactive-element': 'error',
|
|
'github/a11y-no-title-attribute': 'error',
|
|
'github/a11y-svg-has-accessible-name': 'error',
|
|
'github/a11y-role-supports-aria-props': 'error',
|
|
'jsx-a11y/no-aria-hidden-on-focusable': 'error',
|
|
'jsx-a11y/no-autofocus': 'off',
|
|
'jsx-a11y/anchor-ambiguous-text': [
|
|
'error',
|
|
{
|
|
words: ['this', 'more', 'read here', 'read more'],
|
|
},
|
|
],
|
|
'jsx-a11y/no-interactive-element-to-noninteractive-role': [
|
|
'error',
|
|
{
|
|
tr: ['none', 'presentation'],
|
|
td: ['cell'], // TODO: Remove once https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/937#issuecomment-1638128318 is addressed.
|
|
canvas: ['img'],
|
|
},
|
|
],
|
|
// Remove once https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/950 is shipped.
|
|
'jsx-a11y/no-noninteractive-element-to-interactive-role': [
|
|
'error',
|
|
{
|
|
ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
|
|
ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
|
|
li: ['menuitem', 'menuitemradio', 'menuitemcheckbox', 'option', 'row', 'tab', 'treeitem'],
|
|
table: ['grid'],
|
|
td: ['gridcell'],
|
|
fieldset: ['radiogroup', 'presentation'],
|
|
},
|
|
],
|
|
},
|
|
}
|