Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.cache
/.claude
/coverage
/dist
/lib
Expand Down
14 changes: 7 additions & 7 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { defineConfig, globalIgnores } from 'eslint/config';
import tseslint from 'typescript-eslint';

export default defineConfig([
globalIgnores(['.cache', '.nitro', '.output', '.tanstack', 'coverage', 'dist', 'lib']),
globalIgnores(['.cache', '.claude', '.nitro', '.output', '.tanstack', 'coverage', 'dist', 'lib']),

{
linterOptions: {
Expand Down Expand Up @@ -314,17 +314,15 @@ copy(
.join('\n')
);
*/
'@eslint-react/component-hook-factories': 1,
'@eslint-react/error-boundaries': 1,
'@eslint-react/exhaustive-deps': 1,
'@eslint-react/jsx-dollar': 1,
'@eslint-react/jsx-key-before-spread': 1,
'@eslint-react/jsx-no-comment-textnodes': 1,
'@eslint-react/jsx-no-duplicate-props': 1,
'@eslint-react/jsx-shorthand-boolean': 1,
'@eslint-react/jsx-shorthand-fragment': 1,
'@eslint-react/jsx-uses-react': 1,
'@eslint-react/jsx-uses-vars': 1,
'@eslint-react/component-hook-factories': 1,
'@eslint-react/error-boundaries': 1,
'@eslint-react/exhaustive-deps': 1,
'@eslint-react/immutability': 0,
'@eslint-react/no-access-state-in-setstate': 1,
'@eslint-react/no-array-index-key': 0,
'@eslint-react/no-children-count': 1,
Expand All @@ -343,7 +341,9 @@ copy(
'@eslint-react/no-direct-mutation-state': 1,
'@eslint-react/no-duplicate-key': 1,
'@eslint-react/no-forward-ref': 1,
'@eslint-react/no-implicit-children': 0,
'@eslint-react/no-implicit-key': 1,
'@eslint-react/no-implicit-ref': 0,
'@eslint-react/no-leaked-conditional-rendering': 1,
'@eslint-react/no-missing-component-display-name': 1,
'@eslint-react/no-missing-context-display-name': 1,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"typecheck": "tsc --build"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "3.0.0-next.71",
"@eslint-react/eslint-plugin": "3.0.0-rc.0",
"@eslint/markdown": "^7.5.1",
"@faker-js/faker": "^10.0.0",
"@tanstack/react-router": "^1.132.31",
Expand Down
1 change: 0 additions & 1 deletion test/setupBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ afterEach(() => {
// eslint-disable-next-line vitest/no-standalone-expect
expect
.soft(
// eslint-disable-next-line @eslint-react/purity
document.hasFocus(),
'Focus is set on a browser UI element at the end of a test. Use safeTab() to return focus to the page.'
)
Expand Down
Loading