51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const {
|
|
getAllDirectiveComments,
|
|
} = require("../internal/get-all-directive-comments")
|
|
const utils = require("../internal/utils")
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description:
|
|
"disallow `eslint-disable` comments without rule names",
|
|
category: "Best Practices",
|
|
recommended: true,
|
|
url: "https://eslint-community.github.io/eslint-plugin-eslint-comments/rules/no-unlimited-disable.html",
|
|
},
|
|
fixable: null,
|
|
messages: {
|
|
unexpected:
|
|
"Unexpected unlimited '{{kind}}' comment. Specify some rule names to disable.",
|
|
},
|
|
schema: [],
|
|
type: "suggestion",
|
|
},
|
|
|
|
create(context) {
|
|
for (const directiveComment of getAllDirectiveComments(context)) {
|
|
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(directiveComment.loc),
|
|
messageId: "unexpected",
|
|
data: { kind: directiveComment.kind },
|
|
})
|
|
}
|
|
}
|
|
return {}
|
|
},
|
|
}
|