Update: Allow JSX exception in no-inline-comments (fixes #11270) #12388
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.
What is the purpose of this pull request? (put an "X" next to item)
[X] Changes an existing rule #11270
Marked as 'Update' although this change produces fewer warnings by default, because it wasn't a bug.
What rule do you want to change?
no-inline-comments
Does this change cause the rule to produce more or fewer warnings?
fewer
How will the change be implemented? (New option, new default behavior, etc.)?
new default behavior
Please provide some example code that this change will affect:
What does the rule currently do for this code?
2 errors.
What will the rule do after it's changed?
No errors.
What changes did you make? (Give an overview)
Allow a comment in JSX to be on the same line as the braces (or one brace), only if it there is nothing else on the same line and the braces are for comment only (this generates
JSXEmptyExpression
node).Is there anything you'd like reviewers to focus on?
These are currently errors, and will stay errors:
This was already allowed, and will stay allowed:
Also, two comments on the same line are currently an error everywhere (not just in JSX). This behavior is unchanged.
Labeling as evaluating, as I think it isn't decided yet is this a new default behavior or an option.
I 👍 for new default behavior.