123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- "use strict";
- const astUtils = require("./utils/ast-utils");
- const { RegExpParser, visitRegExpAST } = require("@eslint-community/regexpp");
- function union(setA, setB) {
- return new Set(function *() {
- yield* setA;
- yield* setB;
- }());
- }
- const VALID_STRING_ESCAPES = union(new Set("\\nrvtbfux"), astUtils.LINEBREAKS);
- const REGEX_GENERAL_ESCAPES = new Set("\\bcdDfnpPrsStvwWxu0123456789]");
- const REGEX_NON_CHARCLASS_ESCAPES = union(REGEX_GENERAL_ESCAPES, new Set("^/.$*+?[{}|()Bk"));
- const REGEX_CLASSSET_CHARACTER_ESCAPES = union(REGEX_GENERAL_ESCAPES, new Set("q/[{}|()-"));
- const REGEX_CLASS_SET_RESERVED_DOUBLE_PUNCTUATOR = new Set("!#$%&*+,.:;<=>?@^`~");
- module.exports = {
- meta: {
- type: "suggestion",
- docs: {
- description: "Disallow unnecessary escape characters",
- recommended: true,
- url: "https://eslint.org/docs/latest/rules/no-useless-escape"
- },
- hasSuggestions: true,
- messages: {
- unnecessaryEscape: "Unnecessary escape character: \\{{character}}.",
- removeEscape: "Remove the `\\`. This maintains the current functionality.",
- removeEscapeDoNotKeepSemantics: "Remove the `\\` if it was inserted by mistake.",
- escapeBackslash: "Replace the `\\` with `\\\\` to include the actual backslash character."
- },
- schema: []
- },
- create(context) {
- const sourceCode = context.sourceCode;
- const parser = new RegExpParser();
-
- function report(node, startOffset, character, disableEscapeBackslashSuggest) {
- const rangeStart = node.range[0] + startOffset;
- const range = [rangeStart, rangeStart + 1];
- const start = sourceCode.getLocFromIndex(rangeStart);
- context.report({
- node,
- loc: {
- start,
- end: { line: start.line, column: start.column + 1 }
- },
- messageId: "unnecessaryEscape",
- data: { character },
- suggest: [
- {
-
- messageId: astUtils.isDirective(node.parent)
- ? "removeEscapeDoNotKeepSemantics" : "removeEscape",
- fix(fixer) {
- return fixer.removeRange(range);
- }
- },
- ...disableEscapeBackslashSuggest
- ? []
- : [
- {
- messageId: "escapeBackslash",
- fix(fixer) {
- return fixer.insertTextBeforeRange(range, "\\");
- }
- }
- ]
- ]
- });
- }
-
- function validateString(node, match) {
- const isTemplateElement = node.type === "TemplateElement";
- const escapedChar = match[0][1];
- let isUnnecessaryEscape = !VALID_STRING_ESCAPES.has(escapedChar);
- let isQuoteEscape;
- if (isTemplateElement) {
- isQuoteEscape = escapedChar === "`";
- if (escapedChar === "$") {
-
- isUnnecessaryEscape = match.input[match.index + 2] !== "{";
- } else if (escapedChar === "{") {
-
- isUnnecessaryEscape = match.input[match.index - 1] !== "$";
- }
- } else {
- isQuoteEscape = escapedChar === node.raw[0];
- }
- if (isUnnecessaryEscape && !isQuoteEscape) {
- report(node, match.index, match[0].slice(1));
- }
- }
-
- function validateRegExp(node) {
- const { pattern, flags } = node.regex;
- let patternNode;
- const unicode = flags.includes("u");
- const unicodeSets = flags.includes("v");
- try {
- patternNode = parser.parsePattern(pattern, 0, pattern.length, { unicode, unicodeSets });
- } catch {
-
- return;
- }
-
- const characterClassStack = [];
- visitRegExpAST(patternNode, {
- onCharacterClassEnter: characterClassNode => characterClassStack.unshift(characterClassNode),
- onCharacterClassLeave: () => characterClassStack.shift(),
- onExpressionCharacterClassEnter: characterClassNode => characterClassStack.unshift(characterClassNode),
- onExpressionCharacterClassLeave: () => characterClassStack.shift(),
- onCharacterEnter(characterNode) {
- if (!characterNode.raw.startsWith("\\")) {
-
- return;
- }
- const escapedChar = characterNode.raw.slice(1);
- if (escapedChar !== String.fromCodePoint(characterNode.value)) {
-
- return;
- }
- let allowedEscapes;
- if (characterClassStack.length) {
- allowedEscapes = unicodeSets ? REGEX_CLASSSET_CHARACTER_ESCAPES : REGEX_GENERAL_ESCAPES;
- } else {
- allowedEscapes = REGEX_NON_CHARCLASS_ESCAPES;
- }
- if (allowedEscapes.has(escapedChar)) {
- return;
- }
- const reportedIndex = characterNode.start + 1;
- let disableEscapeBackslashSuggest = false;
- if (characterClassStack.length) {
- const characterClassNode = characterClassStack[0];
- if (escapedChar === "^") {
-
- if (characterClassNode.start + 1 === characterNode.start) {
- return;
- }
- }
- if (!unicodeSets) {
- if (escapedChar === "-") {
-
- if (characterClassNode.start + 1 !== characterNode.start && characterNode.end !== characterClassNode.end - 1) {
- return;
- }
- }
- } else {
- if (REGEX_CLASS_SET_RESERVED_DOUBLE_PUNCTUATOR.has(escapedChar)) {
-
- if (pattern[characterNode.end] === escapedChar) {
- return;
- }
- if (pattern[characterNode.start - 1] === escapedChar) {
- if (escapedChar !== "^") {
- return;
- }
-
- if (!characterClassNode.negate) {
- return;
- }
- const negateCaretIndex = characterClassNode.start + 1;
- if (negateCaretIndex < characterNode.start - 1) {
- return;
- }
- }
- }
- if (characterNode.parent.type === "ClassIntersection" || characterNode.parent.type === "ClassSubtraction") {
- disableEscapeBackslashSuggest = true;
- }
- }
- }
- report(
- node,
- reportedIndex,
- escapedChar,
- disableEscapeBackslashSuggest
- );
- }
- });
- }
-
- function check(node) {
- const isTemplateElement = node.type === "TemplateElement";
- if (
- isTemplateElement &&
- node.parent &&
- node.parent.parent &&
- node.parent.parent.type === "TaggedTemplateExpression" &&
- node.parent === node.parent.parent.quasi
- ) {
-
- return;
- }
- if (typeof node.value === "string" || isTemplateElement) {
-
- if (node.parent.type === "JSXAttribute" || node.parent.type === "JSXElement" || node.parent.type === "JSXFragment") {
- return;
- }
- const value = isTemplateElement ? sourceCode.getText(node) : node.raw;
- const pattern = /\\[^\d]/gu;
- let match;
- while ((match = pattern.exec(value))) {
- validateString(node, match);
- }
- } else if (node.regex) {
- validateRegExp(node);
- }
- }
- return {
- Literal: check,
- TemplateElement: check
- };
- }
- };
|