You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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. Here is an example of how it would work:
newRegExp("*\.js","u")// ^^// ├ Remove the `\`. This maintains the current functionality. (no-useless-escape)// └ Replace the `\` with `\\` to include the actual backslash character. (no-useless-escape)
The text was updated successfully, but these errors were encountered:
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. Here is an example of how it would work:
The text was updated successfully, but these errors were encountered: