mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
48 lines
1.5 KiB
JavaScript
48 lines
1.5 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 a `eslint-enable` comment for multiple `eslint-disable` comments",
|
||
|
category: "Best Practices",
|
||
|
recommended: true,
|
||
|
url:
|
||
|
"https://mysticatea.github.io/eslint-plugin-eslint-comments/rules/no-aggregating-enable.html",
|
||
|
},
|
||
|
fixable: null,
|
||
|
schema: [],
|
||
|
type: "suggestion",
|
||
|
},
|
||
|
|
||
|
create(context) {
|
||
|
const sourceCode = context.getSourceCode()
|
||
|
const disabledArea = DisabledArea.get(sourceCode)
|
||
|
|
||
|
return {
|
||
|
Program() {
|
||
|
for (const entry of disabledArea.numberOfRelatedDisableDirectives) {
|
||
|
const comment = entry[0]
|
||
|
const count = entry[1]
|
||
|
|
||
|
if (count >= 2) {
|
||
|
context.report({
|
||
|
loc: utils.toForceLocation(comment.loc),
|
||
|
message:
|
||
|
"This `eslint-enable` comment affects {{count}} `eslint-disable` comments. An `eslint-enable` comment should be for an `eslint-disable` comment.",
|
||
|
data: { count },
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
}
|