mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const utils = require("../internal/utils")
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description:
|
|
"disallow `eslint-disable` comments without rule names",
|
|
category: "Best Practices",
|
|
recommended: true,
|
|
url:
|
|
"https://mysticatea.github.io/eslint-plugin-eslint-comments/rules/no-unlimited-disable.html",
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
type: "suggestion",
|
|
},
|
|
|
|
create(context) {
|
|
const sourceCode = context.getSourceCode()
|
|
|
|
return {
|
|
Program() {
|
|
for (const comment of sourceCode.getAllComments()) {
|
|
const directiveComment = utils.parseDirectiveComment(
|
|
comment
|
|
)
|
|
if (directiveComment == null) {
|
|
continue
|
|
}
|
|
|
|
const kind = directiveComment.kind
|
|
if (
|
|
kind !== "eslint-disable" &&
|
|
kind !== "eslint-disable-line" &&
|
|
kind !== "eslint-disable-next-line"
|
|
) {
|
|
continue
|
|
}
|
|
if (!directiveComment.value) {
|
|
context.report({
|
|
loc: utils.toForceLocation(comment.loc),
|
|
message:
|
|
"Unexpected unlimited '{{kind}}' comment. Specify some rule names to disable.",
|
|
data: { kind: directiveComment.kind },
|
|
})
|
|
}
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|