Skip to content

Commit 52ca118

Browse files
authored
Merge branch 'main' into docs/solid-query/correct-variable-name
2 parents 1a20bcb + 81e1f2c commit 52ca118

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

examples/react/algolia/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"react-dom": "19.0.0-rc-4c2e457c7c-20240522"
1919
},
2020
"devDependencies": {
21-
"@tanstack/eslint-plugin-query": "^5.51.12",
21+
"@tanstack/eslint-plugin-query": "^5.51.13",
2222
"@types/react": "^18.2.79",
2323
"@types/react-dom": "^18.2.25",
2424
"@vitejs/plugin-react": "^4.3.1",

examples/react/basic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"react-dom": "19.0.0-rc-4c2e457c7c-20240522"
1818
},
1919
"devDependencies": {
20-
"@tanstack/eslint-plugin-query": "^5.51.12",
20+
"@tanstack/eslint-plugin-query": "^5.51.13",
2121
"@types/react": "^18.2.79",
2222
"@types/react-dom": "^18.2.25",
2323
"@vitejs/plugin-react": "^4.3.1",

examples/solid/simple/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"solid-js": "^1.8.17"
1515
},
1616
"devDependencies": {
17-
"@tanstack/eslint-plugin-query": "^5.51.12",
17+
"@tanstack/eslint-plugin-query": "^5.51.13",
1818
"typescript": "5.3.3",
1919
"vite": "^5.3.3",
2020
"vite-plugin-solid": "^2.10.2"

packages/eslint-plugin-query/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/eslint-plugin-query",
3-
"version": "5.51.12",
3+
"version": "5.51.13",
44
"description": "ESLint plugin for TanStack Query",
55
"author": "Eliya Cohen",
66
"license": "MIT",

packages/eslint-plugin-query/src/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ type RuleKey = keyof typeof rules
66

77
interface Plugin extends Omit<ESLint.Plugin, 'rules'> {
88
rules: Record<RuleKey, RuleModule<any, any, any>>
9-
configs: Record<
10-
'recommended' | 'flat/recommended',
11-
ESLint.ConfigData | Linter.FlatConfig | Array<Linter.FlatConfig>
12-
>
9+
configs: {
10+
recommended: ESLint.ConfigData
11+
'flat/recommended': Array<Linter.FlatConfig>
12+
}
1313
}
1414

1515
const plugin: Plugin = {

pnpm-lock.yaml

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)