mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
jsx: true
|
|
}
|
|
},
|
|
plugins: ['github', 'jsx-a11y'],
|
|
extends: ['plugin:jsx-a11y/recommended'],
|
|
rules: {
|
|
'github/a11y-no-generic-link-text': 'error'
|
|
}
|
|
}
|