AriPerkkio / eslint-remote-tester

CLI tool for testing given ESlint rules against multiple repositories at once.
https://www.npmjs.com/package/eslint-remote-tester
129 stars 10 forks source link

Weekly scheduled smoke test: eslint-plugin-react-hooks #262

Closed github-actions[bot] closed 3 years ago

github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 14300 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx:1227` - Path: `kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1227) ```tsx 1225 | !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.status.conditions[0].reason); 1226 | > 1227 | React.useEffect(() => { 1228 | let aborted = false; 1229 | async function loadVisualizations() { 1230 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx:1227 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 12195 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx:1227` - Path: `kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1227) ```tsx 1225 | !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.status.conditions[0].reason); 1226 | > 1227 | React.useEffect(() => { 1228 | let aborted = false; 1229 | async function loadVisualizations() { 1230 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton/frontend/src/pages/RunDetails.tsx:1227 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```
github-actions[bot] commented 3 years ago

Detected 2 ESLint reports and/or crashes. Scanned 12314 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 14196 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 12724 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 14196 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 12507 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 12793 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```
github-actions[bot] commented 3 years ago

Detected 3 ESLint reports and/or crashes. Scanned 10520 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ```
github-actions[bot] commented 3 years ago

Detected 16259 ESLint reports and/or crashes. Scanned 10313 repositories.

Reached maximum result count 50. Showing 50/16259

Rules:

Click to expand ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/malhotra-parul/dashboard/src/components/MyLine.jsx:34 Rule: "react-hooks/exhaustive-deps"` - Path: `malhotra-parul/dashboard/src/components/MyLine.jsx` - [Link](https://github.com/malhotra-parul/dashboard/blob/HEAD/src/components/MyLine.jsx#L34) ```jsx 32 | }; 33 | > 34 | useEffect(() => { 35 | line(); 36 | }, []); 37 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/malhotra-parul/dashboard/src/components/MyLine.jsx:34 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/xueyou2000/xy-autocomplete/src/Hooks/useValue.ts:72 Rule: "react-hooks/exhaustive-deps"` - Path: `xueyou2000/xy-autocomplete/src/Hooks/useValue.ts` - [Link](https://github.com/xueyou2000/xy-autocomplete/blob/HEAD/src/Hooks/useValue.ts#L72) ```ts 70 | 71 | // Tips: 搜索改变会影响推荐列表的数量, 所以需要重新对齐 > 72 | useLayoutEffect(() => { 73 | if (align.current) { 74 | align.current(false); 75 | } ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/xueyou2000/xy-autocomplete/src/Hooks/useValue.ts:72 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/xueyou2000/xy-autocomplete/src/Hooks/useVisible.ts:14 Rule: "react-hooks/exhaustive-deps"` - Path: `xueyou2000/xy-autocomplete/src/Hooks/useVisible.ts` - [Link](https://github.com/xueyou2000/xy-autocomplete/blob/HEAD/src/Hooks/useVisible.ts#L14) ```ts 12 | 13 | // Tips: 当前焦点时, options 更新了, 也要判断是否收起下拉列表 > 14 | useEffect(() => { 15 | if (lastPicker.current) { 16 | if (focusRef.current && lastPicker.current !== lastValue.current) { 17 | handleFocus(); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/xueyou2000/xy-autocomplete/src/Hooks/useVisible.ts:14 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/CovidChart/index.js:40 Rule: "react-hooks/exhaustive-deps"` - Path: `thanawatgulati/covid-19/src/sections/CovidChart/index.js` - [Link](https://github.com/thanawatgulati/covid-19/blob/HEAD/src/sections/CovidChart/index.js#L40) ```js 38 | } 39 | > 40 | useEffect(() => { 41 | fetchData(); 42 | }, []); 43 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/CovidChart/index.js:40 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/CovidTable/index.js:17 Rule: "react-hooks/exhaustive-deps"` - Path: `thanawatgulati/covid-19/src/sections/CovidTable/index.js` - [Link](https://github.com/thanawatgulati/covid-19/blob/HEAD/src/sections/CovidTable/index.js#L17) ```js 15 | } 16 | > 17 | useEffect(() => { 18 | fetchData(); 19 | }, []); 20 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/CovidTable/index.js:17 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/Gender/index.js:37 Rule: "react-hooks/exhaustive-deps"` - Path: `thanawatgulati/covid-19/src/sections/Gender/index.js` - [Link](https://github.com/thanawatgulati/covid-19/blob/HEAD/src/sections/Gender/index.js#L37) ```js 35 | } 36 | > 37 | useEffect(() => { 38 | fetchData(); 39 | }, []); 40 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/thanawatgulati/covid-19/src/sections/Gender/index.js:37 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kmoskwiak/useSSE/src/useSSE.tsx:79 Rule: "react-hooks/exhaustive-deps"` - Path: `kmoskwiak/useSSE/src/useSSE.tsx` - [Link](https://github.com/kmoskwiak/useSSE/blob/HEAD/src/useSSE.tsx#L79) ```tsx 77 | } 78 | > 79 | useEffect(() => { 80 | if (internalContext.resolved && !ctx[callId]) { 81 | effect() 82 | .then((res) => { ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kmoskwiak/useSSE/src/useSSE.tsx:79 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/shmuelhizmi/web-desktop-environment/packages/clients/views/src/views/Desktop.tsx:509 Rule: "react-hooks/exhaustive-deps"` - Path: `shmuelhizmi/web-desktop-environment/packages/clients/views/src/views/Desktop.tsx` - [Link](https://github.com/shmuelhizmi/web-desktop-environment/blob/HEAD/packages/clients/views/src/views/Desktop.tsx#L509) ```tsx 507 | }, 508 | }); > 509 | useEffect(() => { 510 | const updateWindow = () => setOpenWindows([...windowManager.windows]); 511 | updateWindow(); 512 | windowManager.emitter.on("addWindow", updateWindow); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/shmuelhizmi/web-desktop-environment/packages/clients/views/src/views/Desktop.tsx:509 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/CleverProgrammers/robinhood-clone/src/Article.js:12 Rule: "react-hooks/exhaustive-deps"` - Path: `CleverProgrammers/robinhood-clone/src/Article.js` - [Link](https://github.com/CleverProgrammers/robinhood-clone/blob/HEAD/src/Article.js#L12) ```js 10 | const [article, setArticle] = useState({}); 11 | > 12 | useEffect(() => { 13 | if (props) { 14 | return axios 15 | .get(BASE_URL) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/CleverProgrammers/robinhood-clone/src/Article.js:12 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/CleverProgrammers/robinhood-clone/src/Stats.js:49 Rule: "react-hooks/exhaustive-deps"` - Path: `CleverProgrammers/robinhood-clone/src/Stats.js` - [Link](https://github.com/CleverProgrammers/robinhood-clone/blob/HEAD/src/Stats.js#L49) ```js 47 | }; 48 | > 49 | useEffect(() => { 50 | const stocksList = ["AAPL", "MSFT", "TSLA", "FB", "BABA", "UBER", "DIS", "SBUX"]; 51 | 52 | getMyStocks(); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/CleverProgrammers/robinhood-clone/src/Stats.js:49 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimiMikadze/create-social-network/packages/orca-frontend/utils/useEffectDebugger.ts:33 Rule: "react-hooks/exhaustive-deps"` - Path: `DimiMikadze/create-social-network/packages/orca-frontend/utils/useEffectDebugger.ts` - [Link](https://github.com/DimiMikadze/create-social-network/blob/HEAD/packages/orca-frontend/utils/useEffectDebugger.ts#L33) ```ts 31 | } 32 | > 33 | useEffect(effectHook, dependencies); 34 | }; 35 | 36 | export default useEffectDebugger; ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimiMikadze/create-social-network/packages/orca-frontend/utils/useEffectDebugger.ts:33 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1822:7) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) at NodeEventGenerator.enterNode (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:333:14) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/amboffman/gamersaurus/client/src/pages/ShareFavorites/index.js:13 Rule: "react-hooks/exhaustive-deps"` - Path: `amboffman/gamersaurus/client/src/pages/ShareFavorites/index.js` - [Link](https://github.com/amboffman/gamersaurus/blob/HEAD/client/src/pages/ShareFavorites/index.js#L13) ```js 11 | const { userName } = useParams(); 12 | > 13 | useEffect(() => { 14 | API.shareUserFavorites(userName).then((res) => { 15 | setFavorites(res.data); 16 | }); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/amboffman/gamersaurus/client/src/pages/ShareFavorites/index.js:13 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/hppRC/gatsby-starter-hpp/src/hooks/use-delay.ts:5 Rule: "react-hooks/exhaustive-deps"` - Path: `hppRC/gatsby-starter-hpp/src/hooks/use-delay.ts` - [Link](https://github.com/hppRC/gatsby-starter-hpp/blob/HEAD/src/hooks/use-delay.ts#L5) ```ts 3 | export default (waitinigTime: number): boolean => { 4 | const [waiting, setWaiting] = useState(true); > 5 | useEffect(() => { 6 | const timerId = setTimeout(() => setWaiting(false), waitinigTime); 7 | return () => { 8 | clearTimeout(timerId); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/hppRC/gatsby-starter-hpp/src/hooks/use-delay.ts:5 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/khoadodk/party-MERN/server/client/src/components/guests/Guests.js:7 Rule: "react-hooks/exhaustive-deps"` - Path: `khoadodk/party-MERN/server/client/src/components/guests/Guests.js` - [Link](https://github.com/khoadodk/party-MERN/blob/HEAD/server/client/src/components/guests/Guests.js#L7) ```js 5 | const Guests = () => { 6 | const { guests, filterGuest, search, getGuests } = useContext(GuestContext); > 7 | useEffect(() => { 8 | getGuests(); 9 | // eslint-disable-next-line 10 | }, []); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/khoadodk/party-MERN/server/client/src/components/guests/Guests.js:7 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/khoadodk/party-MERN/server/client/src/components/pages/Home.js:12 Rule: "react-hooks/exhaustive-deps"` - Path: `khoadodk/party-MERN/server/client/src/components/pages/Home.js` - [Link](https://github.com/khoadodk/party-MERN/blob/HEAD/server/client/src/components/pages/Home.js#L12) ```js 10 | const { getUser } = useContext(AuthContext); 11 | > 12 | useEffect(() => { 13 | getUser(); 14 | // eslint-disable-next-line 15 | }, []); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/khoadodk/party-MERN/server/client/src/components/pages/Home.js:12 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/awmleer/jorum/src/__tests__/subscribe.test.tsx:43 Rule: "react-hooks/exhaustive-deps"` - Path: `awmleer/jorum/src/__tests__/subscribe.test.tsx` - [Link](https://github.com/awmleer/jorum/blob/HEAD/src/__tests__/subscribe.test.tsx#L43) ```tsx 41 | const bloc = useBloc(BehaviorSubjectBloc) 42 | const [stream$, setStream$] = useState(bloc.data$) > 43 | useEffect(() => { 44 | setTimeout(() => { 45 | act(() => { 46 | setStream$(bloc.anotherData$) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/awmleer/jorum/src/__tests__/subscribe.test.tsx:43 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/awmleer/jorum/src/subscribe.tsx:102 Rule: "react-hooks/exhaustive-deps"` - Path: `awmleer/jorum/src/subscribe.tsx` - [Link](https://github.com/awmleer/jorum/blob/HEAD/src/subscribe.tsx#L102) ```tsx 100 | } 101 | } > 102 | useEffect(() => { 103 | if (stream) { 104 | const subscription = stream.subscribe((v) => { 105 | if (initializedRef.current === false) { ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/awmleer/jorum/src/subscribe.tsx:102 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/checkout/checkout-form/index.js:131 Rule: "react-hooks/exhaustive-deps"` - Path: `imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/checkout/checkout-form/index.js` - [Link](https://github.com/imranhsayed/gatsby-woocommerce-themes/blob/HEAD/packages/gatsby-woocommerce-theme/src/components/checkout/checkout-form/index.js#L131) ```js 129 | }; 130 | > 131 | useEffect(() => { 132 | if (null !== orderData) { 133 | // Call the checkout mutation when the value for orderData changes/updates. 134 | /* eslint-disable */ ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/checkout/checkout-form/index.js:131 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/header/nav.js:24 Rule: "react-hooks/exhaustive-deps"` - Path: `imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/header/nav.js` - [Link](https://github.com/imranhsayed/gatsby-woocommerce-themes/blob/HEAD/packages/gatsby-woocommerce-theme/src/components/header/nav.js#L24) ```js 22 | // Eslint disable as headerMenuItems is available from the props so does not have a missing dependency. 23 | /* eslint-disable */ > 24 | useEffect( () => { 25 | 26 | if ( Object.keys( headerMenuItems.edges ).length ) { 27 | const newMenuState = {}; ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/header/nav.js:24 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/home/products/index.js:23 Rule: "react-hooks/exhaustive-deps"` - Path: `imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/home/products/index.js` - [Link](https://github.com/imranhsayed/gatsby-woocommerce-themes/blob/HEAD/packages/gatsby-woocommerce-theme/src/components/home/products/index.js#L23) ```js 21 | * 22 | */ > 23 | useEffect(() => { 24 | const activePage = 1; 25 | setActivePage(activePage); 26 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/home/products/index.js:23 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/add-to-wishlist/index.js:12 Rule: "react-hooks/exhaustive-deps"` - Path: `imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/add-to-wishlist/index.js` - [Link](https://github.com/imranhsayed/gatsby-woocommerce-themes/blob/HEAD/packages/gatsby-woocommerce-theme/src/components/wishlist/add-to-wishlist/index.js#L12) ```js 10 | 11 | /* eslint-disable */ > 12 | useEffect( () => { 13 | const isItemInWishList = isProductInWishList( product.productId ); 14 | setInWishList( isItemInWishList ); 15 | }, [isInWishList] ) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/add-to-wishlist/index.js:12 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/wishlist-products/index.js:43 Rule: "react-hooks/exhaustive-deps"` - Path: `imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/wishlist-products/index.js` - [Link](https://github.com/imranhsayed/gatsby-woocommerce-themes/blob/HEAD/packages/gatsby-woocommerce-theme/src/components/wishlist/wishlist-products/index.js#L43) ```js 41 | 42 | /* eslint-disable */ > 43 | useEffect(() => { 44 | getWishList() 45 | }, []) 46 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/imranhsayed/gatsby-woocommerce-themes/packages/gatsby-woocommerce-theme/src/components/wishlist/wishlist-products/index.js:43 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/ilyalesik/react-use-trigger/useTrigger.js:8 Rule: "react-hooks/exhaustive-deps"` - Path: `ilyalesik/react-use-trigger/useTrigger.js` - [Link](https://github.com/ilyalesik/react-use-trigger/blob/HEAD/useTrigger.js#L8) ```js 6 | var update = function () { return state[1](trigger.id) } 7 | > 8 | React.useEffect(function () { 9 | trigger.subscribe(update) 10 | return function () { return trigger.unsubscribe(update) } 11 | }, []) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/ilyalesik/react-use-trigger/useTrigger.js:8 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/ilyalesik/react-use-trigger/useTriggerEffect.js:8 Rule: "react-hooks/exhaustive-deps"` - Path: `ilyalesik/react-use-trigger/useTriggerEffect.js` - [Link](https://github.com/ilyalesik/react-use-trigger/blob/HEAD/useTriggerEffect.js#L8) ```js 6 | var triggerValue = useTrigger(trigger) 7 | > 8 | React.useEffect(create, [triggerValue]) 9 | } 10 | 11 | module.exports = useTriggerEffect ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/ilyalesik/react-use-trigger/useTriggerEffect.js:8 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1822:7) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) at NodeEventGenerator.enterNode (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:333:14) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/fateh999/react-native-paper-form-builder/src/Inputs/InputSelect.tsx:30 Rule: "react-hooks/exhaustive-deps"` - Path: `fateh999/react-native-paper-form-builder/src/Inputs/InputSelect.tsx` - [Link](https://github.com/fateh999/react-native-paper-form-builder/blob/HEAD/src/Inputs/InputSelect.tsx#L30) ```tsx 28 | const INPUT = CustomTextInput ?? TextInput; 29 | > 30 | const styles = useMemo( 31 | () => 32 | StyleSheet.create({ 33 | textInputStyle: { ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/fateh999/react-native-paper-form-builder/src/Inputs/InputSelect.tsx:30 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useCache.ts:35 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/hooks/useCache.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/hooks/useCache.ts#L35) ```ts 33 | // This way, random unrelated re-renders don't cause the concept of expiry 34 | // to change > 35 | const expired = useMemo(() => { 36 | if ((Date.now() <= expiresAt && !forceFetch) || !params) return false; 37 | return true; 38 | // we need to check against serialized params, since params can change frequently ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useCache.ts:35 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useError.ts:26 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/hooks/useError.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/hooks/useError.ts#L26) ```ts 24 | const controller = useController(); 25 | > 26 | const endpoint = useMemo(() => { 27 | return shapeToEndpoint(fetchShape); 28 | // we currently don't support shape changes 29 | // eslint-disable-next-line react-hooks/exhaustive-deps ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useError.ts:26 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useResource.ts:97 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/hooks/useResource.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/hooks/useResource.ts#L97) ```ts 95 | if (err && !promises[i]) throw err; 96 | } > 97 | const promise = useMemo(() => { 98 | const activePromises = promises.filter(p => p); 99 | if (activePromises.length) { 100 | return Promise.all(activePromises); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useResource.ts:97 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useRetrieve.ts:21 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/hooks/useRetrieve.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/hooks/useRetrieve.ts#L21) ```ts 19 | const { lastReset } = useContext(StateContext); 20 | > 21 | return useMemo(() => { 22 | // null params mean don't do anything 23 | if ((Date.now() <= expiresAt && !triggerFetch) || !params) return; 24 | return dispatchFetch(fetchShape, params); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useRetrieve.ts:21 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useSubscription.ts:25 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/hooks/useSubscription.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/hooks/useSubscription.ts#L25) ```ts 23 | shapeRef.current = fetchShape; 24 | > 25 | useEffect(() => { 26 | if (!params) return; 27 | const { schema, getFetchKey, options } = shapeRef.current; 28 | const key = getFetchKey(params); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/hooks/useSubscription.ts:25 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheProvider.tsx:35 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheProvider.tsx` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/provider/CacheProvider.tsx#L35) ```tsx 33 | 34 | // eslint-disable-next-line react-hooks/exhaustive-deps > 35 | const memodManagers = useMemo(() => managers, managers); 36 | 37 | const middlewares = useMemo( 38 | () => applyManager(managers, controllerRef.current), ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheProvider.tsx:35 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheStore.tsx:39 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheStore.tsx` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/react-integration/provider/CacheStore.tsx#L39) ```tsx 37 | 38 | // if we change out the manager we need to make sure it has no hanging async > 39 | useEffect(() => { 40 | for (let i = 0; i < managers.length; ++i) { 41 | managers[i].init?.(state); 42 | } ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/react-integration/provider/CacheStore.tsx:39 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/state/selectors/useDenormalized.ts:39 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/core/src/state/selectors/useDenormalized.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/core/src/state/selectors/useDenormalized.ts#L39) ```ts 37 | const controller = useController(); 38 | > 39 | const endpoint = useMemo(() => { 40 | return shapeToEndpoint(shape); 41 | // we currently don't support shape changes 42 | // eslint-disable-next-line react-hooks/exhaustive-deps ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/core/src/state/selectors/useDenormalized.ts:39 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useCache.ts:31 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/experimental/src/hooks/useCache.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/experimental/src/hooks/useCache.ts#L31) ```ts 29 | 30 | // Compute denormalized value > 31 | const { data, expiryStatus, expiresAt } = useMemo(() => { 32 | // @ts-ignore 33 | return controller.getResponse(endpoint, ...args, state) as { 34 | data: DenormalizeNullable; ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useCache.ts:31 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useFetch.ts:26 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/experimental/src/hooks/useFetch.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/experimental/src/hooks/useFetch.ts#L26) ```ts 24 | 25 | // Compute denormalized value > 26 | const { expiryStatus, expiresAt } = useMemo(() => { 27 | // @ts-ignore 28 | return controller.getResponse(endpoint, ...args, state) as { 29 | data: Denormalize; ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useFetch.ts:26 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useSubscription.tsx:17 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/experimental/src/hooks/useSubscription.tsx` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/experimental/src/hooks/useSubscription.tsx#L17) ```tsx 15 | const key = args[0] !== null ? endpoint.key(...args) : ''; 16 | > 17 | useEffect(() => { 18 | if (!key) return; 19 | 20 | controller.subscribe(endpoint, ...args); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useSubscription.tsx:17 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useSuspense.ts:36 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/experimental/src/hooks/useSuspense.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/experimental/src/hooks/useSuspense.ts#L36) ```ts 34 | 35 | // Compute denormalized value > 36 | const { data, expiryStatus, expiresAt } = useMemo(() => { 37 | // @ts-ignore 38 | return controller.getResponse(endpoint, ...args, state) as { 39 | data: Denormalize; ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/experimental/src/hooks/useSuspense.ts:36 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/hooks/src/useCancelling.ts:23 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/hooks/src/useCancelling.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/hooks/src/useCancelling.ts#L23) ```ts 21 | // if fetch is already completed signal goes nowhere 22 | const serializedParams = params && endpoint.key(params); > 23 | return useMemo(() => { 24 | if (abortRef.current) abortRef.current.abort(); 25 | abortRef.current = new AbortController(); 26 | return endpoint.extend({ ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/hooks/src/useCancelling.ts:23 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/hooks/src/useLoading.ts:35 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/hooks/src/useLoading.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/hooks/src/useLoading.ts#L35) ```ts 33 | ); 34 | const depsList = deps || [func]; > 35 | const wrappedFunc = useCallback(async (...args: any) => { 36 | setLoading(true); 37 | let ret; 38 | try { ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/hooks/src/useLoading.ts:35 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/legacy/src/useStatefulResource.ts:52 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/legacy/src/useStatefulResource.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/legacy/src/useStatefulResource.ts#L52) ```ts 50 | const controller = useController(); 51 | > 52 | const endpoint = useMemo(() => { 53 | return shapeToEndpoint(fetchShape); 54 | // we currently don't support shape changes 55 | // eslint-disable-next-line react-hooks/exhaustive-deps ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/legacy/src/useStatefulResource.ts:52 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/rest-hooks/src/react-integration/hooks/useSelection.ts:19 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/rest-hooks/src/react-integration/hooks/useSelection.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/rest-hooks/src/react-integration/hooks/useSelection.ts#L19) ```ts 17 | // params must be serialized in check 18 | // eslint-disable-next-line react-hooks/exhaustive-deps > 19 | const selection = useMemo( 20 | () => params && select(state, params), 21 | [ 22 | // eslint-disable-next-line react-hooks/exhaustive-deps ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/rest-hooks/src/react-integration/hooks/useSelection.ts:19 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/rest-hooks/src/react-integration/provider/ExternalCacheProvider.tsx:49 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/rest-hooks/src/react-integration/provider/ExternalCacheProvider.tsx` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/rest-hooks/src/react-integration/provider/ExternalCacheProvider.tsx#L49) ```tsx 47 | ); 48 | > 49 | useEffect(() => { 50 | const unsubscribe = store.subscribe(() => { 51 | if (isMounted.current) setState(selector(store.getState())); 52 | }); ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/rest-hooks/src/react-integration/provider/ExternalCacheProvider.tsx:49 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/use-enhanced-reducer/src/useEnhancedReducer.ts:32 Rule: "react-hooks/exhaustive-deps"` - Path: `coinbase/rest-hooks/packages/use-enhanced-reducer/src/useEnhancedReducer.ts` - [Link](https://github.com/coinbase/rest-hooks/blob/HEAD/packages/use-enhanced-reducer/src/useEnhancedReducer.ts#L32) ```ts 30 | const dispatchWithPromise = usePromisifiedDispatch(realDispatch, state); 31 | > 32 | const outerDispatch = useMemo(() => { 33 | let dispatch: Dispatch = unsetDispatch; 34 | // closure here around dispatch allows us to change it after middleware is constructed 35 | const middlewareAPI = { ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/coinbase/rest-hooks/packages/use-enhanced-reducer/src/useEnhancedReducer.ts:32 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Hooks/useFetch.ts:26 Rule: "react-hooks/exhaustive-deps"` - Path: `tzs34/TypescriptFormDemo/src/components/Hooks/useFetch.ts` - [Link](https://github.com/tzs34/TypescriptFormDemo/blob/HEAD/src/components/Hooks/useFetch.ts#L26) ```ts 24 | } 25 | > 26 | React.useEffect(() => { 27 | getData() 28 | }, []) 29 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Hooks/useFetch.ts:26 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Hooks/useValidation.tsx:17 Rule: "react-hooks/exhaustive-deps"` - Path: `tzs34/TypescriptFormDemo/src/components/Hooks/useValidation.tsx` - [Link](https://github.com/tzs34/TypescriptFormDemo/blob/HEAD/src/components/Hooks/useValidation.tsx#L17) ```tsx 15 | 16 | > 17 | React.useEffect(()=>{ 18 | if(value){ 19 | setValidation(validationFunction(value)) 20 | } ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Hooks/useValidation.tsx:17 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Pages/PaymentSummaryPage.tsx:9 Rule: "react-hooks/exhaustive-deps"` - Path: `tzs34/TypescriptFormDemo/src/components/Pages/PaymentSummaryPage.tsx` - [Link](https://github.com/tzs34/TypescriptFormDemo/blob/HEAD/src/components/Pages/PaymentSummaryPage.tsx#L9) ```tsx 7 | }) => { 8 | const [carSummary, setCarSummary] = React.useState([]) > 9 | React.useEffect(() => { 10 | // here would useFetch hook to get data from the api etc 11 | // But as we should not do that - we can use mock data 12 | ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/tzs34/TypescriptFormDemo/src/components/Pages/PaymentSummaryPage.tsx:9 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/components/App/index.tsx:78 Rule: "react-hooks/exhaustive-deps"` - Path: `moduslabs/modir/src/components/App/index.tsx` - [Link](https://github.com/moduslabs/modir/blob/HEAD/src/components/App/index.tsx#L78) ```tsx 76 | } 77 | } > 78 | useEffect(() => { 79 | updateGlobe() 80 | if (lastLocation) { 81 | const lastActivePage = locationToViewType(lastLocation.pathname) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/components/App/index.tsx:78 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/components/Map/index.tsx:32 Rule: "react-hooks/exhaustive-deps"` - Path: `moduslabs/modir/src/components/Map/index.tsx` - [Link](https://github.com/moduslabs/modir/blob/HEAD/src/components/Map/index.tsx#L32) ```tsx 30 | const [width, setWidth] = useState('100%') 31 | > 32 | const onViewportChange = useCallback((newViewport: ViewState): void => { 33 | const stuff = { ...newViewport } as ViewportProps 34 | 35 | setViewport(newViewport) ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/components/Map/index.tsx:32 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/pages/ModiteDetail/index.tsx:41 Rule: "react-hooks/exhaustive-deps"` - Path: `moduslabs/modir/src/pages/ModiteDetail/index.tsx` - [Link](https://github.com/moduslabs/modir/blob/HEAD/src/pages/ModiteDetail/index.tsx#L41) ```tsx 39 | }, []) 40 | > 41 | useEffect(() => { 42 | if (isLoading === false) { 43 | const locationDataExists = 44 | Object.keys(fields).length > 0 && ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/pages/ModiteDetail/index.tsx:41 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ``` ## Rule: react-hooks/exhaustive-deps - Message: `Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/pages/ProjectDetail/index.tsx:25 Rule: "react-hooks/exhaustive-deps"` - Path: `moduslabs/modir/src/pages/ProjectDetail/index.tsx` - [Link](https://github.com/moduslabs/modir/blob/HEAD/src/pages/ProjectDetail/index.tsx#L25) ```tsx 23 | const { users = [] } = project 24 | > 25 | useEffect(() => { 26 | dispatch({ 27 | type: 'filter-project-users', 28 | modites: users, ``` ``` Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`. Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/moduslabs/modir/src/pages/ProjectDetail/index.tsx:25 Rule: "react-hooks/exhaustive-deps" at Object.report (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:948:35) at reportProblem (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:760:15) at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1691:7) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at ruleErrorHandler (/github/workspace/ci/node_modules/eslint/lib/linter/linter.js:966:28) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:290:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:319:22) ```
github-actions[bot] commented 3 years ago

Detected 8 ESLint reports and/or crashes. Scanned 14196 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts:195` - Path: `DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts` - [Link](https://github.com/DimensionDev/Maskbook/blob/HEAD/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts#L195) ```ts 193 | const paymentTokenDetailed = paymentTokenInfo?.token ?? null 194 | > 195 | useEffect(() => { 196 | const firstPaymentTokenAddress = first(boxInfo?.payments)?.token.address 197 | if (paymentTokenAddress === '' && firstPaymentTokenAddress) setPaymentTokenAddress(firstPaymentTokenAddress) 198 | }, [paymentTokenAddress, boxInfo?.payments.map((x) => x.token.address).join()]) ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts:195 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347` - Path: `steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx` - [Link](https://github.com/steedos/steedos-platform/blob/HEAD/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx#L347) ```tsx 345 | 346 | const useUpdateItem = ({ currentModel, graph, showNameOrLabel }) => { > 347 | useEffect(() => { 348 | 349 | if (graph) { 350 | const gnodes = graph.getNodes() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/steedos/steedos-platform/packages/steedos-plugin-schema-builder/webapp/src/g6/model/index.tsx:347 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx:43` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx#L43) ```tsx 41 | ); 42 | > 43 | const handleChange = useCallback( 44 | (e: Event, stringValue: string | null) => { 45 | setStringValue(stringValue); 46 | const onChange = onChangeRef.current; ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx:43 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx:141` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx#L141) ```tsx 139 | }, [eventRef.current]); 140 | > 141 | useEffect(() => { 142 | setStartDate(value?.[0]); 143 | }, [value?.[0]?.getTime()]); 144 | ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx:141 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx:101` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx#L101) ```tsx 99 | 100 | // эфект для того чтобы календарь переключался при вводе с клавиатуры > 101 | useEffect(() => { 102 | if ( 103 | props.value?.[0] && 104 | props.dateTimeView === 'classic' && ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx:101 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts:88` - Path: `gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts#L88) ```ts 86 | const onChangeRef = useMutableRef(onChange); 87 | > 88 | return useMemo( 89 | () => [ 90 | getItemData( 91 | 24, ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts:88 at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/home/runner/work/eslint-remote-tester/eslint-remote-tester/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```
github-actions[bot] commented 3 years ago

Detected 7 ESLint reports and/or crashes. Scanned 11095 repositories.

Rules:

Click to expand ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51` - Path: `Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js` - [Link](https://github.com/Lambda-School-Labs/niyon-fe/blob/HEAD/src/components/home/Home.test.js#L51) ```js 49 | let component 50 | let server > 51 | useEffect() 52 | beforeEach((done) => { 53 | const id = window.localStorage.getItem('id') 54 | server = fakeServer.create() ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/Lambda-School-Labs/niyon-fe/src/components/home/Home.test.js:51 at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1734:24) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) at NodeEventGenerator.applySelectors (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:322:22) at NodeEventGenerator.enterNode (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:336:14) at CodePathAnalyzer.enterNode (/github/workspace/ci/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:711:23) at /github/workspace/ci/node_modules/eslint/lib/linter/linter.js:960:32 at Array.forEach () ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx:43` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx#L43) ```tsx 41 | ); 42 | > 43 | const handleChange = useCallback( 44 | (e: Event, stringValue: string | null) => { 45 | setStringValue(stringValue); 46 | const onChange = onChangeRef.current; ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDate/DatePickerFieldTypeDate.tsx:43 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx:141` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx#L141) ```tsx 139 | }, [eventRef.current]); 140 | > 141 | useEffect(() => { 142 | setStartDate(value?.[0]); 143 | }, [value?.[0]?.getTime()]); 144 | ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerFieldTypeDateRange/DatePickerFieldTypeDateRange.tsx:141 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx:101` - Path: `gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx#L101) ```tsx 99 | 100 | // эфект для того чтобы календарь переключался при вводе с клавиатуры > 101 | useEffect(() => { 102 | if ( 103 | props.value?.[0] && 104 | props.dateTimeView === 'classic' && ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DatePickerCanary/DatePickerTypeDateRange/DatePickerTypeDateRange.tsx:101 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts:88` - Path: `gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts` - [Link](https://github.com/gazprom-neft/consta-uikit/blob/HEAD/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts#L88) ```ts 86 | const onChangeRef = useMutableRef(onChange); 87 | > 88 | return useMemo( 89 | () => [ 90 | getItemData( 91 | 24, ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/gazprom-neft/consta-uikit/src/components/DateTimeCanary/DateTimeTypeTime/helpers.ts:88 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061` - Path: `kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx` - [Link](https://github.com/kubeflow/kfp-tekton-backend/blob/HEAD/frontend/src/pages/RunDetails.tsx#L1061) ```tsx 1059 | const nodeCompleted: boolean = !!nodeStatus && COMPLETED_NODE_PHASES.includes(nodeStatus.phase); 1060 | > 1061 | React.useEffect(() => { 1062 | let aborted = false; 1063 | async function loadVisualizations() { 1064 | if (aborted) { ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/kubeflow/kfp-tekton-backend/frontend/src/pages/RunDetails.tsx:1061 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ``` ## Rule: unable-to-parse-rule-id - Message: `Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts:195` - Path: `DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts` - [Link](https://github.com/DimensionDev/Maskbook/blob/HEAD/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts#L195) ```ts 193 | const paymentTokenDetailed = paymentTokenInfo?.token ?? null 194 | > 195 | useEffect(() => { 196 | const firstPaymentTokenAddress = first(boxInfo?.payments)?.token.address 197 | if (paymentTokenAddress === '' && firstPaymentTokenAddress) setPaymentTokenAddress(firstPaymentTokenAddress) 198 | }, [paymentTokenAddress, boxInfo?.payments.map((x) => x.token.address).join()]) ``` ``` TypeError: Cannot read property 'type' of undefined Occurred while linting /github/workspace/ci/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/DimensionDev/Maskbook/packages/maskbook/src/plugins/MaskBox/hooks/useContext.ts:195 at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2235:12) at analyzePropertyChain (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:2264:20) at /github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1297:34 at Array.forEach () at visitFunctionWithDependencies (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1277:43) at visitCallExpression (/github/workspace/ci/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:1737:11) at /github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:58 at Array.forEach () at Object.emit (/github/workspace/ci/node_modules/eslint/lib/linter/safe-emitter.js:45:38) at NodeEventGenerator.applySelector (/github/workspace/ci/node_modules/eslint/lib/linter/node-event-generator.js:293:26) ```