Skip to content

Commit 3a1f473

Browse files
committed
update
1 parent 0dc3ccb commit 3a1f473

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/no-unused-props.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ Note: Properties of class types are not checked for usage, as they might be used
168168
```
169169

170170
- `checkImportedTypes` ... Controls whether to check properties from imported types. Default is `false`.
171-
- `ignoreTypePatterns` ... Patterns to ignore when checking property types. Default is `[]`.
172-
- `ignorePropertyPatterns` ... Patterns to ignore when checking for unused props. Default is `[]`, which ignores properties starting with special characters often used for internal or framework-specific identifiers.
171+
- `ignoreTypePatterns` ... Patterns to ignore when checking property types. Default is `[]` (no types are ignored by default). This option can be used to exclude certain types from being checked for unused properties, which is useful for utility or internal types.
172+
- `ignorePropertyPatterns` ... Patterns to ignore when checking for unused props. Default is `[]` (no properties are ignored by default). This option can be used to ignore properties starting with special characters often used for internal or framework-specific identifiers.
173173

174174
Examples:
175175

0 commit comments

Comments
 (0)