mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
19 lines
489 B
JavaScript
19 lines
489 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true
|
|
},
|
|
plugins: ['github'],
|
|
rules: {
|
|
'github/async-currenttarget': 'error',
|
|
'github/async-preventdefault': 'error',
|
|
'github/get-attribute': 'error',
|
|
'github/no-blur': 'error',
|
|
'github/no-dataset': 'error',
|
|
'github/no-innerText': 'error',
|
|
'github/unescaped-html-literal': 'error',
|
|
'github/no-useless-passive': 'error',
|
|
'github/require-passive-events': 'error',
|
|
'github/prefer-observers': 'error'
|
|
}
|
|
}
|