Skip to content

Commit 25a878f

Browse files
committed
Update docs
1 parent fd80ba4 commit 25a878f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

docs/rules/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
8080
| Rule ID | Description | |
8181
|:--------|:------------|:---|
8282
| [vue/attribute-hyphenation](./attribute-hyphenation.md) | enforce attribute naming style on custom components in template | :wrench: |
83-
| [vue/component-name-in-template-casing](./component-name-in-template-casing.md) | enforce specific casing for the component naming style in template | :wrench: |
8483
| [vue/html-closing-bracket-newline](./html-closing-bracket-newline.md) | require or disallow a line break before tag's closing brackets | :wrench: |
8584
| [vue/html-closing-bracket-spacing](./html-closing-bracket-spacing.md) | require or disallow a space before tag's closing brackets | :wrench: |
8685
| [vue/html-end-tags](./html-end-tags.md) | enforce end tag style | :wrench: |
@@ -128,13 +127,14 @@ For example:
128127
```json
129128
{
130129
"rules": {
131-
"vue/script-indent": "error"
130+
"vue/component-name-in-template-casing": "error"
132131
}
133132
}
134133
```
135134

136135
| Rule ID | Description | |
137136
|:--------|:------------|:---|
137+
| [vue/component-name-in-template-casing](./component-name-in-template-casing.md) | enforce specific casing for the component naming style in template | :wrench: |
138138
| [vue/script-indent](./script-indent.md) | enforce consistent indentation in `<script>` | :wrench: |
139139

140140
## Deprecated

docs/rules/component-name-in-template-casing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ description: enforce specific casing for the component naming style in template
77
# vue/component-name-in-template-casing
88
> enforce specific casing for the component naming style in template
99
10-
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
1110
- :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.
1211

1312
Define a style for the component name in template casing for consistency purposes.

lib/configs/strongly-recommended.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ module.exports = {
77
extends: require.resolve('./essential'),
88
rules: {
99
'vue/attribute-hyphenation': 'warn',
10-
'vue/component-name-in-template-casing': 'warn',
1110
'vue/html-closing-bracket-newline': 'warn',
1211
'vue/html-closing-bracket-spacing': 'warn',
1312
'vue/html-end-tags': 'warn',

0 commit comments

Comments
 (0)