1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/eslint-plugin-es/lib/rules/no-regexp-s-flag.js

44 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
/**
* @author Toru Nagashima <https://github.com/mysticatea>
* See LICENSE file in root directory for full license.
*/
"use strict"
const { getRegExpCalls } = require("../utils")
module.exports = {
meta: {
docs: {
description: "disallow RegExp `s` flag.",
category: "ES2018",
recommended: false,
url:
"http://mysticatea.github.io/eslint-plugin-es/rules/no-regexp-s-flag.html",
},
fixable: null,
schema: [],
messages: {
forbidden: "ES2018 RegExp 's' flag is forbidden.",
},
},
create(context) {
return {
"Literal[regex]"(node) {
if (node.regex.flags.includes("s")) {
context.report({ node, messageId: "forbidden" })
}
},
"Program:exit"() {
const scope = context.getScope()
for (const { node, flags } of getRegExpCalls(scope)) {
if (flags && flags.includes("s")) {
context.report({ node, messageId: "forbidden" })
}
}
},
}
},
}