Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/.eslintcache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\index.js":"1","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\App.js":"2","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\reportWebVitals.js":"3","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Navbar\\Navbar.js":"4","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Navbar\\MenuItems.js":"5","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Register\\Register.js":"6","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Login\\Login.js":"7","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Home\\Home.js":"8","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Util\\Button.js":"9","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Class\\Class.js":"10"},{"size":613,"mtime":1615474800656,"results":"11","hashOfConfig":"12"},{"size":668,"mtime":1615570989606,"results":"13","hashOfConfig":"12"},{"size":375,"mtime":1615396420906,"results":"14","hashOfConfig":"12"},{"size":1110,"mtime":1615570470215,"results":"15","hashOfConfig":"12"},{"size":411,"mtime":1615474800655,"results":"16","hashOfConfig":"12"},{"size":1130,"mtime":1615479044482,"results":"17","hashOfConfig":"12"},{"size":944,"mtime":1615479021222,"results":"18","hashOfConfig":"12"},{"size":1878,"mtime":1615571248882,"results":"19","hashOfConfig":"12"},{"size":614,"mtime":1615478991709,"results":"20","hashOfConfig":"12"},{"size":1511,"mtime":1615572404265,"results":"21","hashOfConfig":"12"},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},"2p51na",{"filePath":"25","messages":"26","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"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":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"35","usedDeprecatedRules":"24"},{"filePath":"36","messages":"37","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"38","usedDeprecatedRules":"24"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"24"},{"filePath":"43","messages":"44","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\index.js",[],["45","46"],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\App.js",["47"],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\reportWebVitals.js",[],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Navbar\\Navbar.js",[],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Navbar\\MenuItems.js",[],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Register\\Register.js",["48"],"import React, { useState } from 'react'\r\nimport './Register.css'\r\n\r\nconst Register = () => {\r\n return (\r\n <div className='register'>\r\n <div className='register-flex-container'>\r\n <div className='register-white-box'>\r\n <h1 className='register-heading'>Create your account</h1>\r\n <form>\r\n <input className='register-form-input' type=\"email\" placeholder=\"Email\"></input>\r\n <br />\r\n <input className='register-form-input' type=\"text\" placeholder=\"Full Name\"></input>\r\n <br />\r\n <input className='register-form-input' type=\"password\" placeholder=\"Password\"></input>\r\n <br />\r\n <input className='register-form-submit' type=\"submit\" value=\"Create Account\"></input>\r\n </form>\r\n <p className=\"register-alt-signin\">Have an account? <b><a href='./#'>Sign in.</a></b></p>\r\n </div>\r\n </div>\r\n </div>\r\n )\r\n}\r\n\r\nexport default Register;","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Login\\Login.js",["49"],"import React, { useState } from 'react'\r\nimport './Login.css'\r\n\r\nconst Login = () => {\r\n return (\r\n <div className='login'>\r\n <div className='login-flex-container'>\r\n <div className='login-white-box'>\r\n <h1 className='login-heading'>Sign in</h1>\r\n <form>\r\n <input className='login-form-input' type=\"email\" placeholder=\"Email\"></input>\r\n <br />\r\n <input className='login-form-input' type=\"password\" placeholder=\"Password\"></input>\r\n <br />\r\n <input className='login-form-submit' type=\"submit\" value=\"Sign in\"></input>\r\n </form>\r\n <p className=\"login-alt-signin\">Don't have an account? <b><a href='./#'>Register.</a></b></p>\r\n </div>\r\n </div>\r\n </div>\r\n )\r\n}\r\n\r\nexport default Login;","C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Home\\Home.js",["50"],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Util\\Button.js",[],"C:\\Users\\Ryanh\\Desktop\\Side_projects\\chausters\\client\\src\\components\\Class\\Class.js",["51","52","53"],{"ruleId":"54","replacedBy":"55"},{"ruleId":"56","replacedBy":"57"},{"ruleId":"58","severity":1,"message":"59","line":7,"column":8,"nodeType":"60","messageId":"61","endLine":7,"endColumn":14},{"ruleId":"58","severity":1,"message":"62","line":1,"column":17,"nodeType":"60","messageId":"61","endLine":1,"endColumn":25},{"ruleId":"58","severity":1,"message":"62","line":1,"column":17,"nodeType":"60","messageId":"61","endLine":1,"endColumn":25},{"ruleId":"58","severity":1,"message":"62","line":1,"column":17,"nodeType":"60","messageId":"61","endLine":1,"endColumn":25},{"ruleId":"58","severity":1,"message":"62","line":1,"column":17,"nodeType":"60","messageId":"61","endLine":1,"endColumn":25},{"ruleId":"58","severity":1,"message":"63","line":5,"column":9,"nodeType":"60","messageId":"61","endLine":5,"endColumn":13},{"ruleId":"58","severity":1,"message":"64","line":5,"column":15,"nodeType":"60","messageId":"61","endLine":5,"endColumn":24},"no-native-reassign",["65"],"no-negated-in-lhs",["66"],"no-unused-vars","'Navbar' is defined but never used.","Identifier","unusedVar","'useState' is defined but never used.","'Link' is defined but never used.","'useParams' is defined but never used.","no-global-assign","no-unsafe-negation"]
Loading