Sha256: 130e13ba94449b48298bfa3cf8e5999271badad5728ae12d818b9380a484a979
Contents?: true
Size: 1.17 KB
Versions: 43
Compression:
Stored size: 1.17 KB
Contents
/** * @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 `y` flag.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-regexp-y-flag.html", }, fixable: null, schema: [], messages: { forbidden: "ES2015 RegExp 'y' flag is forbidden.", }, }, create(context) { return { "Literal[regex]"(node) { if (node.regex.flags.includes("y")) { context.report({ node, messageId: "forbidden" }) } }, "Program:exit"() { const scope = context.getScope() for (const { node, flags } of getRegExpCalls(scope)) { if (flags && flags.includes("y")) { context.report({ node, messageId: "forbidden" }) } } }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems