Skip to content

Commit f7819e6

Browse files
author
barthy
committed
valid docs
1 parent 13c3f9a commit f7819e6

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

docs/rules/padding-line-between-component-options.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This rule enforces consistent format of empty lines between Vue component option
1919

2020
```vue
2121
<script>
22-
<!-- ✓ GOOD -->
22+
/* ✓ GOOD */
2323
export default {
2424
name: 'a-button',
2525
@@ -37,8 +37,12 @@ This rule enforces consistent format of empty lines between Vue component option
3737
// ...
3838
}
3939
}
40+
</script>
41+
```
4042

41-
<!-- ✗ BAD -->
43+
```vue
44+
<script>
45+
/* ✗ BAD */
4246
export default {
4347
name: 'a-button',
4448
/**
@@ -63,7 +67,7 @@ This rule enforces consistent format of empty lines between Vue component option
6367

6468
```vue
6569
<script>
66-
<!-- ✓ GOOD -->
70+
/* ✓ GOOD */
6771
export default {
6872
name: 'a-button',
6973
/**
@@ -79,8 +83,12 @@ This rule enforces consistent format of empty lines between Vue component option
7983
// ...
8084
}
8185
}
82-
83-
<!-- ✗ BAD -->
86+
</script>
87+
```
88+
89+
```vue
90+
<script>
91+
/* ✗ BAD */
8492
export default {
8593
name: 'a-button',
8694

0 commit comments

Comments
 (0)