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
|[vue/no-v-text](./no-v-text.md)| disallow use of v-text ||:hammer:|
253
253
|[vue/padding-line-between-blocks](./padding-line-between-blocks.md)| require or disallow padding lines between blocks |:wrench:|:lipstick:|
254
+
|[vue/padding-line-between-tags](./padding-line-between-tags.md)| require or disallow newlines between sibling tags in template |:wrench:|:lipstick:|
254
255
|[vue/prefer-prop-type-boolean-first](./prefer-prop-type-boolean-first.md)| enforce `Boolean` comes first in component prop types |:bulb:|:warning:|
255
256
|[vue/prefer-separate-static-class](./prefer-separate-static-class.md)| require static class names in template to be in a separate `class` attribute |:wrench:|:hammer:|
256
257
|[vue/prefer-true-attribute-shorthand](./prefer-true-attribute-shorthand.md)| require shorthand form attribute when `v-bind` value is `true`|:bulb:|:hammer:|
@@ -260,7 +261,6 @@ For example:
260
261
|[vue/require-name-property](./require-name-property.md)| require a name property in Vue components ||:hammer:|
261
262
|[vue/script-indent](./script-indent.md)| enforce consistent indentation in `<script>`|:wrench:|:lipstick:|
262
263
|[vue/sort-keys](./sort-keys.md)| enforce sort-keys in a manner that is compatible with order-in-components ||:hammer:|
263
-
|[vue/padding-line-between-tags](./padding-line-between-tags.md)| Insert newlines between sibling tags in template |:wrench:|:warning:|
264
264
|[vue/static-class-names-order](./static-class-names-order.md)| enforce static class names order |:wrench:|:hammer:|
|[vue/v-on-function-call](./v-on-function-call.md)| enforce or forbid parentheses after method calls without arguments in `v-on` directives |:wrench:|:hammer:|
Copy file name to clipboardExpand all lines: docs/rules/padding-line-between-tags.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/padding-line-between-tags
5
-
description: Require or disallow newlines between sibling tags in template
5
+
description: require or disallow newlines between sibling tags in template
6
+
since: v9.5.0
6
7
---
7
8
# vue/padding-line-between-tags
8
9
9
-
> Require or disallow newlines between sibling tags in template
10
+
> require or disallow newlines between sibling tags in template
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
13
13
14
14
## :book: Rule Details
@@ -157,6 +157,10 @@ A configuration is an object which has 3 properties; blankLine, prev and next. F
157
157
158
158
</eslint-code-block>
159
159
160
+
## :rocket: Version
161
+
162
+
This rule was introduced in eslint-plugin-vue v9.5.0
0 commit comments