-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintcache
1 lines (1 loc) · 6.61 KB
/
.eslintcache
1
[{"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\index.js":"1","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodoContainer.js":"2","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\InputTodo.js":"3","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodosList.js":"4","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\Header.js":"5","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\Navbar.js":"6","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\NotMatch.js":"7","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\About.js":"8","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodoItem.js":"9","C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\SinglePage.js":"10"},{"size":434,"mtime":1631923235500,"results":"11","hashOfConfig":"12"},{"size":3056,"mtime":1631923145191,"results":"13","hashOfConfig":"12"},{"size":1084,"mtime":1631923806061,"results":"14","hashOfConfig":"12"},{"size":395,"mtime":1631923522127,"results":"15","hashOfConfig":"12"},{"size":544,"mtime":1631923108457,"results":"16","hashOfConfig":"12"},{"size":1360,"mtime":1631925495425,"results":"17","hashOfConfig":"12"},{"size":160,"mtime":1631923054717,"results":"18","hashOfConfig":"12"},{"size":572,"mtime":1631923054717,"results":"19","hashOfConfig":"12"},{"size":1472,"mtime":1631923194270,"results":"20","hashOfConfig":"12"},{"size":1103,"mtime":1631923806061,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"1hzol34",{"filePath":"25","messages":"26","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"27","messages":"28","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"31","messages":"32","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"41","messages":"42","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":"43","usedDeprecatedRules":"24"},"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\index.js",[],["44","45"],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodoContainer.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\InputTodo.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodosList.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\Header.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\Navbar.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\NotMatch.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\About.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\components\\TodoItem.js",[],"C:\\Users\\danth\\WebDevWorkspace\\Web_Dev\\react-todo-project-completed\\react-todo-project-main\\src\\functionBased\\pages\\SinglePage.js",["46","47"],"import React from 'react'\nimport { useParams } from \"react-router-dom\";\n\nconst SinglePage = () => {\n const aboutData = [\n {\n slug: \"about-app\",\n title: \"About the App\",\n description: \n \"In this app, you can add, delete, submit and edit items. To edit items, simply double click on it. Once you are done, press the enter key to resubmit. This app will persist your data in the browser local storage. So whether you reload, close your app or reopened it, you still have access to your to-dos items.\",\n },\n {\n slug: \"about-author\",\n title: \"About the Author\",\n description: \n \"This app was developed by Ibas Majid, a self taught web developer and a technical writer. He is opened to freelance Gig. So go ahead and connect with ibas on Twitter @ibaslogic.\",\n },\n ];\n\n const { slug } = useParams();\n const aboutContent = aboutData.find(item => item.slug === slug);\n const {title, description} = aboutContent\n \n return (\n <div className=\"main__content\">\n <h1>{title}</h1>\n <p>{description}</p>\n </div>\n )\n}\nexport default SinglePage\n",{"ruleId":"48","replacedBy":"49"},{"ruleId":"50","replacedBy":"51"},{"ruleId":"52","severity":1,"message":"53","line":2,"column":10,"nodeType":"54","messageId":"55","endLine":2,"endColumn":19},{"ruleId":"56","severity":1,"message":"57","line":7,"column":7,"nodeType":"58","endLine":7,"endColumn":11},"no-native-reassign",["59"],"no-negated-in-lhs",["60"],"no-unused-vars","'useParams' is defined but never used.","Identifier","unusedVar","jsx-a11y/heading-has-content","Headings must have content and the content must be accessible by a screen reader.","JSXOpeningElement","no-global-assign","no-unsafe-negation"]