-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tools: Add no useless regex char class rule #9591
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
190 changes: 190 additions & 0 deletions
190
tools/eslint-rules/no-useless-regex-char-class-escape.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
/** | ||
* @fileoverview Disallow useless escape in regex character class | ||
* Based on 'no-useless-escape' rule | ||
*/ | ||
'use strict'; | ||
|
||
//------------------------------------------------------------------------------ | ||
// Rule Definition | ||
//------------------------------------------------------------------------------ | ||
|
||
const REGEX_CHARCLASS_ESCAPES = new Set('\\bcdDfnrsStvwWxu0123456789]'); | ||
|
||
/** | ||
* Parses a regular expression into a list of regex character class list. | ||
* @param {string} regExpText raw text used to create the regular expression | ||
* @returns {Object[]} A list of character classes tokens with index and | ||
* escape info | ||
* @example | ||
* | ||
* parseRegExpCharClass('a\\b[cd-]') | ||
* | ||
* returns: | ||
* [ | ||
* { | ||
* empty: false, | ||
* start: 4, | ||
* end: 6, | ||
* chars: [ | ||
* {text: 'c', index: 4, escaped: false}, | ||
* {text: 'd', index: 5, escaped: false}, | ||
* {text: '-', index: 6, escaped: false} | ||
* ] | ||
* } | ||
* ] | ||
*/ | ||
|
||
function parseRegExpCharClass(regExpText) { | ||
const charList = []; | ||
let charListIdx = -1; | ||
const initState = { | ||
escapeNextChar: false, | ||
inCharClass: false, | ||
startingCharClass: false | ||
}; | ||
|
||
regExpText.split('').reduce((state, char, index) => { | ||
if (!state.escapeNextChar) { | ||
if (char === '\\') { | ||
return Object.assign(state, { escapeNextChar: true }); | ||
} | ||
if (char === '[' && !state.inCharClass) { | ||
charListIdx += 1; | ||
charList.push({ start: index + 1, chars: [], end: -1 }); | ||
return Object.assign(state, { | ||
inCharClass: true, | ||
startingCharClass: true | ||
}); | ||
} | ||
if (char === ']' && state.inCharClass) { | ||
const charClass = charList[charListIdx]; | ||
charClass.empty = charClass.chars.length === 0; | ||
if (charClass.empty) { | ||
charClass.start = charClass.end = -1; | ||
} else { | ||
charList[charListIdx].end = index - 1; | ||
} | ||
return Object.assign(state, { | ||
inCharClass: false, | ||
startingCharClass: false | ||
}); | ||
} | ||
} | ||
if (state.inCharClass) { | ||
charList[charListIdx].chars.push({ | ||
text: char, | ||
index, escaped: | ||
state.escapeNextChar | ||
}); | ||
} | ||
return Object.assign(state, { | ||
escapeNextChar: false, | ||
startingCharClass: false | ||
}); | ||
}, initState); | ||
|
||
return charList; | ||
} | ||
|
||
module.exports = { | ||
meta: { | ||
docs: { | ||
description: 'disallow unnecessary regex characer class escape sequences', | ||
category: 'Best Practices', | ||
recommended: false | ||
}, | ||
fixable: 'code', | ||
schema: [{ | ||
'type': 'object', | ||
'properties': { | ||
'override': { | ||
'type': 'array', | ||
'items': { 'type': 'string' }, | ||
'uniqueItems': true | ||
} | ||
}, | ||
'additionalProperties': false | ||
}] | ||
}, | ||
|
||
create(context) { | ||
const overrideSet = new Set(context.options.length | ||
? context.options[0].override || [] | ||
: []); | ||
|
||
/** | ||
* Reports a node | ||
* @param {ASTNode} node The node to report | ||
* @param {number} startOffset The backslash's offset | ||
* from the start of the node | ||
* @param {string} character The uselessly escaped character | ||
* (not including the backslash) | ||
* @returns {void} | ||
*/ | ||
function report(node, startOffset, character) { | ||
context.report({ | ||
node, | ||
loc: { | ||
line: node.loc.start.line, | ||
column: node.loc.start.column + startOffset | ||
}, | ||
message: 'Unnecessary regex escape in character' + | ||
' class: \\{{character}}', | ||
data: { character }, | ||
fix: (fixer) => { | ||
const start = node.range[0] + startOffset; | ||
return fixer.replaceTextRange([start, start + 1], ''); | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
* Checks if a node has superflous escape character | ||
* in regex character class. | ||
* | ||
* @param {ASTNode} node - node to check. | ||
* @returns {void} | ||
*/ | ||
function check(node) { | ||
if (node.regex) { | ||
parseRegExpCharClass(node.regex.pattern) | ||
.forEach((charClass) => { | ||
charClass | ||
.chars | ||
// The '-' character is a special case if is not at | ||
// either edge of the character class. To account for this, | ||
// filter out '-' characters that appear in the middle of a | ||
// character class. | ||
.filter((charInfo) => !(charInfo.text === '-' && | ||
(charInfo.index !== charClass.start && | ||
charInfo.index !== charClass.end))) | ||
|
||
// The '^' character is a special case if it's at the beginning | ||
// of the character class. To account for this, filter out '^' | ||
// characters that appear at the start of a character class. | ||
// | ||
.filter((charInfo) => !(charInfo.text === '^' && | ||
charInfo.index === charClass.start)) | ||
|
||
// Filter out characters that aren't escaped. | ||
.filter((charInfo) => charInfo.escaped) | ||
|
||
// Filter out characters that are valid to escape, based on | ||
// their position in the regular expression. | ||
.filter((charInfo) => !REGEX_CHARCLASS_ESCAPES.has(charInfo.text)) | ||
|
||
// Filter out overridden character list. | ||
.filter((charInfo) => !overrideSet.has(charInfo.text)) | ||
|
||
// Report all the remaining characters. | ||
.forEach((charInfo) => | ||
report(node, charInfo.index, charInfo.text)); | ||
}); | ||
} | ||
} | ||
|
||
return { | ||
Literal: check | ||
}; | ||
} | ||
}; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that this function is very different from the corresponding one in
no-useless-escape
. This isn't necessarily a problem, but is there a reason to change it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it covers only RegExp character class.
(Possible) Useless Escape > (Possible) Useless RegExp Escape > Useless RegExp Character Class Escape (optional override)