Skip to content

Commit

Permalink
docs: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed May 6, 2023
1 parent 8cecae4 commit 6e390d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ The rules with the following star :star: are included in the config.
| [yml/key-spacing](https://ota-meshi.github.io/eslint-plugin-yml/rules/key-spacing.html) | enforce consistent spacing between keys and values in mapping pairs | :wrench: | | :star: |
| [yml/no-irregular-whitespace](https://ota-meshi.github.io/eslint-plugin-yml/rules/no-irregular-whitespace.html) | disallow irregular whitespace | | :star: | :star: |
| [yml/no-multiple-empty-lines](https://ota-meshi.github.io/eslint-plugin-yml/rules/no-multiple-empty-lines.html) | disallow multiple empty lines | :wrench: | | |
| [yml/no-trailing-zeros](https://ota-meshi.github.io/eslint-plugin-yml/rules/no-trailing-zeros.html) | disallow trailing zeros for numbers. | | | :star: |
| [yml/spaced-comment](https://ota-meshi.github.io/eslint-plugin-yml/rules/spaced-comment.html) | enforce consistent spacing after the `#` in a comment | :wrench: | | :star: |

<!--RULES_TABLE_END-->
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ The rules with the following star :star: are included in the `plugin:yml/recomme
| [yml/no-empty-mapping-value](./no-empty-mapping-value.md) | disallow empty mapping values | | :star: | :star: |
| [yml/no-empty-sequence-entry](./no-empty-sequence-entry.md) | disallow empty sequence entries | | :star: | :star: |
| [yml/no-tab-indent](./no-tab-indent.md) | disallow tabs for indentation. | | :star: | :star: |
| [yml/no-trailing-zeros](./no-trailing-zeros.md) | disallow trailing zeros for numbers. | | | :star: |
| [yml/plain-scalar](./plain-scalar.md) | require or disallow plain style scalar. | :wrench: | | :star: |
| [yml/quotes](./quotes.md) | enforce the consistent use of either double, or single quotes | :wrench: | | :star: |
| [yml/require-string-key](./require-string-key.md) | disallow mapping keys other than strings | | | |
Expand All @@ -45,4 +44,5 @@ The rules with the following star :star: are included in the `plugin:yml/recomme
| [yml/key-spacing](./key-spacing.md) | enforce consistent spacing between keys and values in mapping pairs | :wrench: | | :star: |
| [yml/no-irregular-whitespace](./no-irregular-whitespace.md) | disallow irregular whitespace | | :star: | :star: |
| [yml/no-multiple-empty-lines](./no-multiple-empty-lines.md) | disallow multiple empty lines | :wrench: | | |
| [yml/no-trailing-zeros](./no-trailing-zeros.md) | disallow trailing zeros for numbers. | | | :star: |
| [yml/spaced-comment](./spaced-comment.md) | enforce consistent spacing after the `#` in a comment | :wrench: | | :star: |
1 change: 1 addition & 0 deletions src/configs/standard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export = {
"yml/no-empty-sequence-entry": "error",
"yml/no-irregular-whitespace": "error",
"yml/no-tab-indent": "error",
"yml/no-trailing-zeros": "error",
"yml/plain-scalar": "error",
"yml/quotes": "error",
"yml/spaced-comment": "error",
Expand Down

0 comments on commit 6e390d0

Please sign in to comment.