| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | /** * @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" })                    }                }            },        }    },}
 |