mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
const github = require('../../plugin')
|
|
const {fixupPluginRules} = require('@eslint/compat')
|
|
|
|
module.exports = {
|
|
plugins: {github: fixupPluginRules(github)},
|
|
rules: {
|
|
'github/authenticity-token': 'error',
|
|
'github/js-class-name': 'error',
|
|
'github/no-d-none': 'error',
|
|
},
|
|
}
|