Skip to content

Commit 4a4ad4b

Browse files
committed
feat: update category
1 parent 72e3c31 commit 4a4ad4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/rules/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ For example:
228228
| [vue/next-tick-style](./next-tick-style.md) | enforce Promise or callback style in `nextTick` | :wrench: | :hammer: |
229229
| [vue/no-bare-strings-in-template](./no-bare-strings-in-template.md) | disallow the use of bare strings in `<template>` | | :hammer: |
230230
| [vue/no-boolean-default](./no-boolean-default.md) | disallow boolean defaults | | :hammer: |
231+
| [vue/no-deprecated-delete-set](./no-deprecated-delete-set.md) | disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+) | | :warning: |
231232
| [vue/no-deprecated-model-definition](./no-deprecated-model-definition.md) | disallow deprecated `model` definition (in Vue.js 3.0.0+) | :bulb: | :warning: |
232233
| [vue/no-duplicate-attr-inheritance](./no-duplicate-attr-inheritance.md) | enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"` | | :hammer: |
233234
| [vue/no-empty-component-block](./no-empty-component-block.md) | disallow the `<template>` `<script>` `<style>` block to be empty | | :hammer: |

lib/rules/no-deprecated-delete-set.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
docs: {
2525
description:
2626
'disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)',
27-
categories: [],
27+
categories: undefined,
2828
url: 'https://eslint.vuejs.org/rules/no-deprecated-delete-set.html'
2929
},
3030
fixable: null,

0 commit comments

Comments
 (0)