mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const DisabledArea = require("../internal/disabled-area")
|
|
const utils = require("../internal/utils")
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow unused `eslint-enable` comments",
|
|
category: "Best Practices",
|
|
recommended: true,
|
|
url:
|
|
"https://mysticatea.github.io/eslint-plugin-eslint-comments/rules/no-unused-enable.html",
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
type: "problem",
|
|
},
|
|
|
|
create(context) {
|
|
const sourceCode = context.getSourceCode()
|
|
const disabledArea = DisabledArea.get(sourceCode)
|
|
|
|
return {
|
|
Program() {
|
|
for (const item of disabledArea.unusedEnableDirectives) {
|
|
context.report({
|
|
loc: utils.toRuleIdLocation(item.comment, item.ruleId),
|
|
message: item.ruleId
|
|
? "'{{ruleId}}' rule is re-enabled but it has not been disabled."
|
|
: "ESLint rules are re-enabled but those have not been disabled.",
|
|
data: item,
|
|
})
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|