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
Please describe what the rule should do: Closing brackets should not be allowed to go multiline.
What category should the rule belong to? [x] Enforces code style (layout)
<div class="mb-10 slide-right-to-left"> <v-btn fab small> <v-tooltip open-delay="600">Cancel</v-tooltip ><v-icon>mdi-close</v-icon></v-btn > </div>
The previous situation, where both v-tooltip and v-btn have their > in a newline, is currently accepted. The following should be enforced:
v-tooltip
v-btn
>
<div class="mb-10 slide-right-to-left"> <v-btn fab small> <v-tooltip open-delay="600">Cancel</v-tooltip> <v-icon>mdi-close</v-icon> </v-btn> </div>
Am I missing something or there's no rule to enforce this yet?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please describe what the rule should do:
Closing brackets should not be allowed to go multiline.
What category should the rule belong to?
[x] Enforces code style (layout)
The previous situation, where both
v-tooltip
andv-btn
have their>
in a newline, is currently accepted.The following should be enforced:
Am I missing something or there's no rule to enforce this yet?
The text was updated successfully, but these errors were encountered: