-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintcache
1 lines (1 loc) · 8.93 KB
/
.eslintcache
1
[{"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/pages/Pools/index.tsx":"1","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/PoolCard.tsx":"2","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/ptGraphClient/index.ts":"3","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/ptGraphClient/queries.ts":"4","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/pages/Withdraw/index.tsx":"5","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/abis/daiPool.js":"6","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/index.ts":"7","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/utils/useInterval.ts":"8","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/Countdown.tsx":"9","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/styled.ts":"10","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/styled.ts":"11","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/index.ts":"12","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/providers/pools.tsx":"13"},{"size":2300,"mtime":1612975162533,"results":"14","hashOfConfig":"15"},{"size":1957,"mtime":1612975489642,"results":"16","hashOfConfig":"15"},{"size":2254,"mtime":1612972707529,"results":"17","hashOfConfig":"15"},{"size":1007,"mtime":1612972688431,"results":"18","hashOfConfig":"15"},{"size":3610,"mtime":1612961186938,"results":"19","hashOfConfig":"15"},{"size":19766,"mtime":1612526070033,"results":"20","hashOfConfig":"21"},{"size":134,"mtime":1612961468148,"results":"22","hashOfConfig":"15"},{"size":577,"mtime":1612964792167,"results":"23","hashOfConfig":"15"},{"size":1641,"mtime":1612975396491,"results":"24","hashOfConfig":"15"},{"size":1789,"mtime":1612969520974,"results":"25","hashOfConfig":"15"},{"size":610,"mtime":1612969520972,"results":"26","hashOfConfig":"15"},{"size":64,"mtime":1612969520971,"results":"27","hashOfConfig":"15"},{"size":4465,"mtime":1612977750838,"results":"28","hashOfConfig":"15"},{"filePath":"29","messages":"30","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"68gz18",{"filePath":"31","messages":"32","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"33","messages":"34","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"37","messages":"38","errorCount":0,"warningCount":5,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"u6hnnf",{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":"45"},{"filePath":"46","messages":"47","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"48","messages":"49","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"50","messages":"51","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"52","messages":"53","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"54"},{"filePath":"55","messages":"56","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/pages/Pools/index.tsx",["57","58"],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/PoolCard.tsx",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/ptGraphClient/index.ts",["59","60"],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/ptGraphClient/queries.ts",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/pages/Withdraw/index.tsx",["61","62","63","64","65"],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/abis/daiPool.js",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/index.ts",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/utils/useInterval.ts",["66","67","68"],"import React, { useState, useEffect, useRef } from 'react';\n\ntype CallbackFunction = () => void;\n\nexport const useInterval = (callback: CallbackFunction, delay: number) => {\n const savedCallback = useRef<CallbackFunction>();\n\n useEffect(() => {\n savedCallback.current = callback;\n }, [callback]);\n\n useEffect(() => {\n const tick = () => {\n if (savedCallback.current !== undefined) {\n savedCallback.current();\n }\n };\n if (delay !== null) {\n const id = setInterval(tick, delay);\n return () => clearInterval(id);\n }\n }, [delay]);\n};\n","/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/Countdown.tsx",["69"],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/PoolCard/styled.ts",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/styled.ts",[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/components/Countdown/index.ts",[],[],"/Users/denham/Documents/projects/gnosis-safe-apps/gnosis-app-pool-together/src/providers/pools.tsx",["70","71"],{"ruleId":"72","severity":1,"message":"73","line":2,"column":10,"nodeType":"74","messageId":"75","endLine":2,"endColumn":24},{"ruleId":"72","severity":1,"message":"76","line":3,"column":10,"nodeType":"74","messageId":"75","endLine":3,"endColumn":27},{"ruleId":"77","severity":1,"message":"78","line":21,"column":25,"nodeType":"79","messageId":"80","endLine":21,"endColumn":36},{"ruleId":"77","severity":1,"message":"78","line":34,"column":29,"nodeType":"79","messageId":"80","endLine":34,"endColumn":53},{"ruleId":"72","severity":1,"message":"73","line":16,"column":10,"nodeType":"74","messageId":"75","endLine":16,"endColumn":24},{"ruleId":"72","severity":1,"message":"81","line":17,"column":10,"nodeType":"74","messageId":"75","endLine":17,"endColumn":29},{"ruleId":"72","severity":1,"message":"82","line":18,"column":10,"nodeType":"74","messageId":"75","endLine":18,"endColumn":16},{"ruleId":"83","severity":1,"message":"84","line":32,"column":23,"nodeType":"85","messageId":"86","endLine":32,"endColumn":26,"suggestions":"87"},{"ruleId":"72","severity":1,"message":"88","line":37,"column":26,"nodeType":"74","messageId":"75","endLine":37,"endColumn":43},{"ruleId":"72","severity":1,"message":"89","line":1,"column":8,"nodeType":"74","messageId":"75","endLine":1,"endColumn":13},{"ruleId":"72","severity":1,"message":"90","line":1,"column":17,"nodeType":"74","messageId":"75","endLine":1,"endColumn":25},{"ruleId":"77","severity":1,"message":"78","line":5,"column":28,"nodeType":"79","messageId":"80","endLine":5,"endColumn":74},{"ruleId":"72","severity":1,"message":"91","line":11,"column":27,"nodeType":"74","messageId":"75","endLine":11,"endColumn":28},{"ruleId":"72","severity":1,"message":"73","line":3,"column":10,"nodeType":"74","messageId":"75","endLine":3,"endColumn":24},{"ruleId":"72","severity":1,"message":"92","line":9,"column":8,"nodeType":"74","messageId":"75","endLine":9,"endColumn":42},"@typescript-eslint/no-unused-vars","'useSafeAppsSDK' is defined but never used.","Identifier","unusedVar","'contractAddresses' is defined but never used.","@typescript-eslint/explicit-module-boundary-types","Missing return type on function.","ArrowFunctionExpression","missingReturnType","'SafeAppsSdkProvider' is defined but never used.","'daiAbi' is defined but never used.","@typescript-eslint/no-explicit-any","Unexpected any. Specify a different type.","TSAnyKeyword","unexpectedAny",["93","94"],"'setHasFairnessFee' is assigned a value but never used.","'React' is defined but never used.","'useState' is defined but never used.","'_' is assigned a value but never used.","'SingleRandomWinnerPrizeStrategyAbi' is defined but never used.",{"messageId":"95","fix":"96","desc":"97"},{"messageId":"98","fix":"99","desc":"100"},"suggestUnknown",{"range":"101","text":"102"},"Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct.","suggestNever",{"range":"101","text":"103"},"Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of.",[1046,1049],"unknown","never"]