-
Notifications
You must be signed in to change notification settings - Fork 360
Closed
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityhelp wantedIssues identified as good community contribution opportunitiesIssues identified as good community contribution opportunities
Description
Eslint has a new Suggestions API that was initially described in this RFC, and recently merged and released in eslint 6.7.0.
The suggestions API provides information for users to manually apply fixes for lint issues that don't have enough context to be auto-fixable. I think we'll want to have vscode-eslint support suggestions as a Quick Fix. Here is an example of how it would work:
new RegExp("*\.js", "u")
// ^^
// ├ Remove the `\`. This maintains the current functionality. (no-useless-escape)
// └ Replace the `\` with `\\` to include the actual backslash character. (no-useless-escape)
glen-84, David-Else, yangmingshan, teppeis, bradzacher and 1 more
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityhelp wantedIssues identified as good community contribution opportunitiesIssues identified as good community contribution opportunities