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