From 22b34abf5b52d48b82694e4f95437dc5c9ef91c7 Mon Sep 17 00:00:00 2001 From: Vida Xie <38204901+9romise@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:42:47 +0800 Subject: [PATCH] chore(docs): fix default value in prefer-use-store-naming-convention --- docs/rules/prefer-use-store-naming-convention.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/prefer-use-store-naming-convention.md b/docs/rules/prefer-use-store-naming-convention.md index fdd7b97..b94f80f 100644 --- a/docs/rules/prefer-use-store-naming-convention.md +++ b/docs/rules/prefer-use-store-naming-convention.md @@ -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.