We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The operator_usage_whitespace rule fails to identify missing spaces around the ternary operator (? :).
operator_usage_whitespace
? :
opt_in_rules: - operator_usage_whitespace
Example that should trigger the rule:
let foo = bar ? 0:1
Expected fix:
let foo = bar ? 0 : 1
The text was updated successfully, but these errors were encountered:
Handle ternary conditions
b070492
Fixes #3965
58bb58e
Fixed in #3962
Sorry, something went wrong.
No branches or pull requests
New Issue Checklist
Describe the bug
The
operator_usage_whitespace
rule fails to identify missing spaces around the ternary operator (? :
).Environment
Example that should trigger the rule:
Expected fix:
The text was updated successfully, but these errors were encountered: