Skip to content

Commit 3ce6e36

Browse files
authored
Merge branch 'main' into no-use-in-try-catch
2 parents 4f0be28 + 333b93e commit 3ce6e36

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

apps/website/content/docs/configurations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import React from "@pika/react";
4747

4848
### `strictImportCheck`
4949

50-
Check both the shape and the import to determine if a API is from React before applying the rules.
50+
Check both the shape and the import to determine if an API is from React before applying the rules.
5151

5252
This can prevent false positives when using a irrelevant third-party library that has similar APIs to React.
5353

apps/website/content/docs/configurations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function SettingsTypeTable() {
2222
type: "boolean",
2323
description: (
2424
<Link href="#strictimportcheck">
25-
Check both the shape and the import to determine if a API is from React before applying the rules. ⤵
25+
Check both the shape and the import to determine if an API is from React before applying the rules. ⤵
2626
</Link>
2727
),
2828
default: "false",

packages/shared/docs/functions/defineSettings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ This is used to determine the type of the component.
192192

193193
`boolean` = `...`
194194

195-
Check both the shape and the import to determine if a API is from React.
195+
Check both the shape and the import to determine if an API is from React.
196196

197197
**Description**
198198

@@ -401,7 +401,7 @@ This is used to determine the type of the component.
401401

402402
> **strictImportCheck**: `boolean`
403403
404-
Check both the shape and the import to determine if a API is from React.
404+
Check both the shape and the import to determine if an API is from React.
405405

406406
#### Description
407407

packages/shared/src/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const ESLintReactSettingsSchema = object({
120120
*/
121121
strict: optional(boolean(), false),
122122
/**
123-
* Check both the shape and the import to determine if a API is from React.
123+
* Check both the shape and the import to determine if an API is from React.
124124
* @description This can prevent false positives when using a irrelevant third-party library that has similar APIs to React.
125125
* @default `false`
126126
*/

0 commit comments

Comments
 (0)