Skip to content

Commit 88cc277

Browse files
Bump @eslint-react/eslint-plugin from 3.0.0-next.71 to 3.0.0-rc.0 (#4000)
* Bump @eslint-react/eslint-plugin from 3.0.0-next.71 to 3.0.0-rc.0 Bumps [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) from 3.0.0-next.71 to 3.0.0-rc.0. - [Release notes](https://github.com/Rel1cx/eslint-react/releases) - [Changelog](https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md) - [Commits](https://github.com/Rel1cx/eslint-react/commits/v3.0.0-rc.0/packages/plugins/eslint-plugin) --- updated-dependencies: - dependency-name: "@eslint-react/eslint-plugin" dependency-version: 3.0.0-rc.0 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update config --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Stepien <stepien.nicolas@gmail.com>
1 parent af8f7dc commit 88cc277

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.cache
2+
/.claude
23
/coverage
34
/dist
45
/lib

eslint.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { defineConfig, globalIgnores } from 'eslint/config';
1313
import tseslint from 'typescript-eslint';
1414

1515
export default defineConfig([
16-
globalIgnores(['.cache', '.nitro', '.output', '.tanstack', 'coverage', 'dist', 'lib']),
16+
globalIgnores(['.cache', '.claude', '.nitro', '.output', '.tanstack', 'coverage', 'dist', 'lib']),
1717

1818
{
1919
linterOptions: {
@@ -314,17 +314,15 @@ copy(
314314
.join('\n')
315315
);
316316
*/
317-
'@eslint-react/component-hook-factories': 1,
318-
'@eslint-react/error-boundaries': 1,
319-
'@eslint-react/exhaustive-deps': 1,
320317
'@eslint-react/jsx-dollar': 1,
321318
'@eslint-react/jsx-key-before-spread': 1,
322319
'@eslint-react/jsx-no-comment-textnodes': 1,
323-
'@eslint-react/jsx-no-duplicate-props': 1,
324320
'@eslint-react/jsx-shorthand-boolean': 1,
325321
'@eslint-react/jsx-shorthand-fragment': 1,
326-
'@eslint-react/jsx-uses-react': 1,
327-
'@eslint-react/jsx-uses-vars': 1,
322+
'@eslint-react/component-hook-factories': 1,
323+
'@eslint-react/error-boundaries': 1,
324+
'@eslint-react/exhaustive-deps': 1,
325+
'@eslint-react/immutability': 0,
328326
'@eslint-react/no-access-state-in-setstate': 1,
329327
'@eslint-react/no-array-index-key': 0,
330328
'@eslint-react/no-children-count': 1,
@@ -343,7 +341,9 @@ copy(
343341
'@eslint-react/no-direct-mutation-state': 1,
344342
'@eslint-react/no-duplicate-key': 1,
345343
'@eslint-react/no-forward-ref': 1,
344+
'@eslint-react/no-implicit-children': 0,
346345
'@eslint-react/no-implicit-key': 1,
346+
'@eslint-react/no-implicit-ref': 0,
347347
'@eslint-react/no-leaked-conditional-rendering': 1,
348348
'@eslint-react/no-missing-component-display-name': 1,
349349
'@eslint-react/no-missing-context-display-name': 1,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"typecheck": "tsc --build"
4848
},
4949
"devDependencies": {
50-
"@eslint-react/eslint-plugin": "3.0.0-next.71",
50+
"@eslint-react/eslint-plugin": "3.0.0-rc.0",
5151
"@eslint/markdown": "^7.5.1",
5252
"@faker-js/faker": "^10.0.0",
5353
"@tanstack/react-router": "^1.132.31",

test/setupBrowser.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ afterEach(() => {
9393
// eslint-disable-next-line vitest/no-standalone-expect
9494
expect
9595
.soft(
96-
// eslint-disable-next-line @eslint-react/purity
9796
document.hasFocus(),
9897
'Focus is set on a browser UI element at the end of a test. Use safeTab() to return focus to the page.'
9998
)

0 commit comments

Comments
 (0)