Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint/lib/rules/require-unicode-regexp.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
69 lines (56 sloc)
1.94 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview Rule to enforce the use of `u` flag on RegExp. | |
* @author Toru Nagashima | |
*/ | |
"use strict"; | |
//------------------------------------------------------------------------------ | |
// Requirements | |
//------------------------------------------------------------------------------ | |
const { | |
CALL, | |
CONSTRUCT, | |
ReferenceTracker, | |
getStringIfConstant | |
} = require("eslint-utils"); | |
//------------------------------------------------------------------------------ | |
// Rule Definition | |
//------------------------------------------------------------------------------ | |
module.exports = { | |
meta: { | |
type: "suggestion", | |
docs: { | |
description: "enforce the use of `u` flag on RegExp", | |
category: "Best Practices", | |
recommended: false, | |
url: "https://eslint.org/docs/rules/require-unicode-regexp" | |
}, | |
messages: { | |
requireUFlag: "Use the 'u' flag." | |
}, | |
schema: [] | |
}, | |
create(context) { | |
return { | |
"Literal[regex]"(node) { | |
const flags = node.regex.flags || ""; | |
if (!flags.includes("u")) { | |
context.report({ node, messageId: "requireUFlag" }); | |
} | |
}, | |
Program() { | |
const scope = context.getScope(); | |
const tracker = new ReferenceTracker(scope); | |
const trackMap = { | |
RegExp: { [CALL]: true, [CONSTRUCT]: true } | |
}; | |
for (const { node } of tracker.iterateGlobalReferences(trackMap)) { | |
const flagsNode = node.arguments[1]; | |
const flags = getStringIfConstant(flagsNode, scope); | |
if (!flagsNode || (typeof flags === "string" && !flags.includes("u"))) { | |
context.report({ node, messageId: "requireUFlag" }); | |
} | |
} | |
} | |
}; | |
} | |
}; |