-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintcache
More file actions
1 lines (1 loc) · 7.07 KB
/
Copy path.eslintcache
File metadata and controls
1 lines (1 loc) · 7.07 KB
1
[{"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\index.js":"1","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\App.js":"2","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\reportWebVitals.js":"3","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\LandingSection\\LandingSection.js":"4","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\TradeWithUs\\TradeWithUs.js":"5","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Footer\\Footer.js":"6","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Features\\Features.js":"7","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\ContactUS\\ContactUS.js":"8","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Feedback\\Feedback.js":"9","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Navbar\\Navbar.js":"10","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\UI\\PopUp\\PopUp.js":"11","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\UI\\Loader\\Loader.js":"12","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Navbar\\MenuItems.js":"13","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Button.js":"14"},{"size":472,"mtime":1609355059127,"results":"15","hashOfConfig":"16"},{"size":729,"mtime":1609406492056,"results":"17","hashOfConfig":"16"},{"size":375,"mtime":1609406468020,"results":"18","hashOfConfig":"16"},{"size":1708,"mtime":1609423681753,"results":"19","hashOfConfig":"16"},{"size":1738,"mtime":1609688474250,"results":"20","hashOfConfig":"16"},{"size":536,"mtime":1609355059044,"results":"21","hashOfConfig":"16"},{"size":1867,"mtime":1609355059037,"results":"22","hashOfConfig":"16"},{"size":2983,"mtime":1609446284050,"results":"23","hashOfConfig":"16"},{"size":4096,"mtime":1610547280803,"results":"24","hashOfConfig":"16"},{"size":1557,"mtime":1610547372036,"results":"25","hashOfConfig":"16"},{"size":677,"mtime":1609423681757,"results":"26","hashOfConfig":"16"},{"size":370,"mtime":1609405738943,"results":"27","hashOfConfig":"16"},{"size":520,"mtime":1609355059051,"results":"28","hashOfConfig":"16"},{"size":626,"mtime":1609355059033,"results":"29","hashOfConfig":"16"},{"filePath":"30","messages":"31","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},"13894im",{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"43","messages":"44","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"45","messages":"46","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"47","messages":"48","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"49","messages":"50","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"51","usedDeprecatedRules":"32"},{"filePath":"52","messages":"53","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"54"},{"filePath":"55","messages":"56","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"57","messages":"58","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"59","messages":"60","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\index.js",[],["61","62"],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\App.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\reportWebVitals.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\LandingSection\\LandingSection.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\TradeWithUs\\TradeWithUs.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Footer\\Footer.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Features\\Features.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\ContactUS\\ContactUS.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Feedback\\Feedback.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Navbar\\Navbar.js",["63"],"import React, { Component } from 'react';\r\nimport { MenuItems } from \"./MenuItems\"\r\nimport { Button } from \"../Button\"\r\nimport './Navbar.css'\r\nimport { Link } from 'react-scroll';\r\nimport TbLogo from '../../assets/images/logo.png';\r\n\r\nclass Navbar extends Component {\r\n state = { clicked: false }\r\n\r\n handleClick = () => {\r\n this.setState({ clicked: !this.state.clicked })\r\n }\r\n\r\n render() {\r\n return(\r\n <nav className=\"NavbarItems\">\r\n <p className=\"navbar-logo\"><img class=\"tradebag-logo\" src={TbLogo}/>TRADEBAG</p>\r\n <div className=\"menu-icon\" onClick={this.handleClick}>\r\n {/* <i className={this.state.clicked ? 'fas fa-times' : 'fas fa-bars'}></i> */}\r\n<div id=\"nav-icon1\" className={this.state.clicked? 'open' : 'no'}>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n</div>\r\n </div>\r\n <ul className={this.state.clicked ? 'nav-menu active' : 'nav-menu'}>\r\n {MenuItems.map((item, index) => {\r\n return (\r\n <li key={index}>\r\n <Link onClick={this.handleClick} className={item.cName} to={item.url} smooth={true} duration={1000}>\r\n {item.title}\r\n </Link>\r\n </li>\r\n )\r\n })}\r\n </ul>\r\n <Button>Get app</Button>\r\n </nav>\r\n )\r\n }\r\n}\r\n\r\nexport default Navbar","C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\UI\\PopUp\\PopUp.js",[],["64","65"],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\UI\\Loader\\Loader.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Navbar\\MenuItems.js",[],"C:\\Users\\hp\\Desktop\\ProfitBag\\src\\Components\\Button.js",[],{"ruleId":"66","replacedBy":"67"},{"ruleId":"68","replacedBy":"69"},{"ruleId":"70","severity":1,"message":"71","line":18,"column":44,"nodeType":"72","endLine":18,"endColumn":85},{"ruleId":"66","replacedBy":"73"},{"ruleId":"68","replacedBy":"74"},"no-native-reassign",["75"],"no-negated-in-lhs",["76"],"jsx-a11y/alt-text","img elements must have an alt prop, either with meaningful text, or an empty string for decorative images.","JSXOpeningElement",["75"],["76"],"no-global-assign","no-unsafe-negation"]