You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
/** |
|
* @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, |
|
messages: { |
|
forbidden: "ES2015 RegExp 'u' flag is forbidden.", |
|
}, |
|
schema: [], |
|
type: "problem", |
|
}, |
|
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" }) |
|
} |
|
} |
|
}, |
|
} |
|
}, |
|
}
|
|
|