Skip to content

Commit

Permalink
Merge pull request #13 from 9romise/#12
Browse files Browse the repository at this point in the history
chore(docs): fix default value in prefer-use-store-naming-convention
  • Loading branch information
lisilinhart committed Apr 5, 2024
2 parents 46022be + 22b34ab commit 6dff094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/prefer-use-store-naming-convention.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Options

- `checkStoreNameMismatch`: If set to true (default), it checks if the name inside use'name'Store matches the unique identifier passed to `defineStore`. If set to false, it only checks if the store name starts with `use` and ends with `Store`.
- `checkStoreNameMismatch`: If set to true, it checks if the name inside use'name'Store matches the unique identifier passed to `defineStore`. If set to false (default), it only checks if the store name starts with `use` and ends with `Store`.
- `storeSuffix`: Can be configured to enforce the ending names of your store names. For example if it's configured to `Store`, it would warn if the store is not ending with the suffix, like `useNumberStore` would be valid, but `useNumber` would be invalid.

<!-- begin auto-generated rule options list -->
Expand Down

0 comments on commit 6dff094

Please sign in to comment.