Skip to content

Commit 2938569

Browse files
committed
chore: run update
1 parent b9be60b commit 2938569

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/rules/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ For example:
285285
| [vue/no-bare-strings-in-template](./no-bare-strings-in-template.md) | disallow the use of bare strings in `<template>` | |
286286
| [vue/no-boolean-default](./no-boolean-default.md) | disallow boolean defaults | :wrench: |
287287
| [vue/no-duplicate-attr-inheritance](./no-duplicate-attr-inheritance.md) | enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"` | |
288+
| [vue/no-empty-component-block](./no-empty-component-block.md) | disallow the `<template>` `<script>` `<style>` block to be empty | |
288289
| [vue/no-potential-component-option-typo](./no-potential-component-option-typo.md) | disallow a potential typo in your component property | |
289290
| [vue/no-reserved-component-names](./no-reserved-component-names.md) | disallow the use of reserved names in component definitions | |
290291
| [vue/no-restricted-static-attribute](./no-restricted-static-attribute.md) | disallow specific attribute | |

lib/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ module.exports = {
6868
'no-dupe-keys': require('./rules/no-dupe-keys'),
6969
'no-duplicate-attr-inheritance': require('./rules/no-duplicate-attr-inheritance'),
7070
'no-duplicate-attributes': require('./rules/no-duplicate-attributes'),
71+
'no-empty-component-block': require('./rules/no-empty-component-block'),
7172
'no-empty-pattern': require('./rules/no-empty-pattern'),
7273
'no-extra-parens': require('./rules/no-extra-parens'),
7374
'no-irregular-whitespace': require('./rules/no-irregular-whitespace'),

0 commit comments

Comments
 (0)