initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
78
github/codeql-action-v2/node_modules/eslint-plugin-eslint-comments/lib/rules/require-description.js
generated
vendored
Normal file
78
github/codeql-action-v2/node_modules/eslint-plugin-eslint-comments/lib/rules/require-description.js
generated
vendored
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
/**
|
||||
* @author Yosuke Ota <https://github.com/ota-meshi>
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const utils = require("../internal/utils")
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description:
|
||||
"require include descriptions in ESLint directive-comments",
|
||||
category: "Stylistic Issues",
|
||||
recommended: false,
|
||||
url:
|
||||
"https://mysticatea.github.io/eslint-plugin-eslint-comments/rules/require-description.html",
|
||||
},
|
||||
fixable: null,
|
||||
schema: [
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
ignore: {
|
||||
type: "array",
|
||||
items: {
|
||||
enum: [
|
||||
"eslint",
|
||||
"eslint-disable",
|
||||
"eslint-disable-line",
|
||||
"eslint-disable-next-line",
|
||||
"eslint-enable",
|
||||
"eslint-env",
|
||||
"exported",
|
||||
"global",
|
||||
"globals",
|
||||
],
|
||||
},
|
||||
additionalItems: false,
|
||||
uniqueItems: true,
|
||||
},
|
||||
},
|
||||
additionalProperties: false,
|
||||
},
|
||||
],
|
||||
type: "suggestion",
|
||||
},
|
||||
|
||||
create(context) {
|
||||
const sourceCode = context.getSourceCode()
|
||||
const ignores = new Set(
|
||||
(context.options[0] && context.options[0].ignore) || []
|
||||
)
|
||||
|
||||
return {
|
||||
Program() {
|
||||
for (const comment of sourceCode.getAllComments()) {
|
||||
const directiveComment = utils.parseDirectiveComment(
|
||||
comment
|
||||
)
|
||||
if (directiveComment == null) {
|
||||
continue
|
||||
}
|
||||
if (ignores.has(directiveComment.kind)) {
|
||||
continue
|
||||
}
|
||||
if (!directiveComment.description) {
|
||||
context.report({
|
||||
loc: utils.toForceLocation(comment.loc),
|
||||
message:
|
||||
"Unexpected undescribed directive comment. Include descriptions to explain why the comment is necessary.",
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue