-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintcache
1 lines (1 loc) · 4.55 KB
/
.eslintcache
1
[{"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\index.js":"1","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\App.js":"2","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Header.js":"3","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Sidebar.js":"4","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\SidebarOption.js":"5","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\firebase.js":"6","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Chat.js":"7","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Message.js":"8","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Login.js":"9"},{"size":506,"mtime":1608853547848,"results":"10","hashOfConfig":"11"},{"size":760,"mtime":1610044662538,"results":"12","hashOfConfig":"11"},{"size":989,"mtime":1608940591432,"results":"13","hashOfConfig":"11"},{"size":2421,"mtime":1609595453727,"results":"14","hashOfConfig":"11"},{"size":1177,"mtime":1609603597952,"results":"15","hashOfConfig":"11"},{"size":641,"mtime":1610089984169,"results":"16","hashOfConfig":"11"},{"size":2090,"mtime":1609610881502,"results":"17","hashOfConfig":"11"},{"size":619,"mtime":1609612470430,"results":"18","hashOfConfig":"11"},{"size":990,"mtime":1610102258494,"results":"19","hashOfConfig":"11"},{"filePath":"20","messages":"21","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},"2xtti1",{"filePath":"23","messages":"24","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"25","usedDeprecatedRules":"22"},{"filePath":"26","messages":"27","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"28","messages":"29","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"30","messages":"31","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"32","messages":"33","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"34"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\index.js",[],["41","42"],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\App.js",["43"],"import React, { useState } from 'react'\nimport './App.css';\nimport Header from './Header'\nimport Sidebar from './Sidebar'\nimport Chat from './Chat'\nimport {\n BrowserRouter as Router,\n Switch,\n Route,\n} from \"react-router-dom\";\nimport Login from './Login';\n\n\nfunction App() {\n\n const [user, setUser] = useState('');\n return (\n \n <div className=\"App\">\n <Router>\n { !user ? (\n <Login />\n ) : (\n\n <>\n <Header />\n <div className=\"app__body\">\n <Sidebar />\n\n <Switch>\n\n <Route path='/room/:roomId'>\n <Chat />\n </Route>\n\n <Route path='/'>\n <h1>Welcome</h1>\n </Route>\n </Switch>\n\n\n </div>\n </>\n )}\n </Router>\n </div>\n );\n}\n\nexport default App;\n","C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Header.js",[],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Sidebar.js",[],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\SidebarOption.js",[],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\firebase.js",[],["44","45"],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Chat.js",[],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Message.js",[],"C:\\Users\\ogunmolawm\\source\\react\\slack-clone-reactjs\\src\\Login.js",[],{"ruleId":"46","replacedBy":"47"},{"ruleId":"48","replacedBy":"49"},{"ruleId":"50","severity":1,"message":"51","line":16,"column":16,"nodeType":"52","messageId":"53","endLine":16,"endColumn":23},{"ruleId":"46","replacedBy":"54"},{"ruleId":"48","replacedBy":"55"},"no-native-reassign",["56"],"no-negated-in-lhs",["57"],"no-unused-vars","'setUser' is assigned a value but never used.","Identifier","unusedVar",["56"],["57"],"no-global-assign","no-unsafe-negation"]