-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintcache
1 lines (1 loc) · 7.13 KB
/
.eslintcache
1
[{"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\index.js":"1","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\reportWebVitals.js":"2","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\App.js":"3","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\HanoiDisplay\\index.js":"4","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\Disc\\index.js":"5","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\HanoiDisplay\\Stick.js":"6","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\index.js":"7","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\App.js":"8","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\reportWebVitals.js":"9","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\HanoiDisplay\\index.js":"10","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\HanoiDisplay\\Stick.js":"11","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\Disc\\index.js":"12","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\Welcome\\index.js":"13"},{"size":500,"mtime":499162500000,"results":"14","hashOfConfig":"15"},{"size":362,"mtime":499162500000,"results":"16","hashOfConfig":"15"},{"size":348,"mtime":1607090355175,"results":"17","hashOfConfig":"15"},{"size":801,"mtime":1607096480988,"results":"18","hashOfConfig":"15"},{"size":672,"mtime":1607096995139,"results":"19","hashOfConfig":"15"},{"size":675,"mtime":1607096607617,"results":"20","hashOfConfig":"15"},{"size":500,"mtime":499162500000,"results":"21","hashOfConfig":"22"},{"size":350,"mtime":1610192277132,"results":"23","hashOfConfig":"22"},{"size":362,"mtime":499162500000,"results":"24","hashOfConfig":"22"},{"size":8645,"mtime":1607685745454,"results":"25","hashOfConfig":"22"},{"size":1583,"mtime":1607339015795,"results":"26","hashOfConfig":"22"},{"size":1388,"mtime":1607339208981,"results":"27","hashOfConfig":"22"},{"size":3169,"mtime":1610194452396,"results":"28","hashOfConfig":"22"},{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},"17yz1fc",{"filePath":"32","messages":"33","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"34","messages":"35","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"36","messages":"37","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"38","messages":"39","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":"40"},{"filePath":"41","messages":"42","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"43","usedDeprecatedRules":"31"},{"filePath":"44","messages":"45","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"46"},"1omgq0j",{"filePath":"47","messages":"48","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"49","messages":"50","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"46"},{"filePath":"51","messages":"52","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"46"},{"filePath":"53","messages":"54","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"46"},{"filePath":"55","messages":"56","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"46"},{"filePath":"57","messages":"58","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\index.js",[],["59","60"],"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\reportWebVitals.js",[],"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\App.js",[],"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\HanoiDisplay\\index.js",[],"C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\Disc\\index.js",["61","62"],"import React, { useState, useEffect } from 'react';\r\nimport styled from 'styled-components';\r\n\r\nconst S = {};\r\nS.Disc = styled.div`\r\n width: ${(props) => props.size};\r\n height: 7%;\r\n border-radius: 20px;\r\n background-color: ${(props) => props.color};\r\n z-index: 1;\r\n align-self: center;\r\n box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);\r\n transition: 0.5s;\r\n :hover {\r\n box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32), 0 3px 6px rgba(0, 0, 0, 0.46);\r\n }\r\n`;\r\n\r\nconst Disc = (props) => {\r\n return (\r\n <S.Disc\r\n size={(props.size * 10).toString() + '%'}\r\n color={props.color}\r\n ></S.Disc>\r\n );\r\n};\r\n\r\nexport default Disc;\r\n","C:\\Users\\Faruk\\Documents\\HanoiTower\\towers-of-hanoi\\src\\components\\HanoiDisplay\\Stick.js",["63"],"import React from 'react';\r\nimport styled from 'styled-components';\r\nimport Disc from '../Disc';\r\n\r\nconst S = {};\r\nS.Wrapper = styled.div`\r\n position: relative;\r\n display: flex;\r\n flex-direction: column;\r\n width: 100%;\r\n height: 100%;\r\n border-radius: 10px 10px 0 0;\r\n align-self: flex-end;\r\n justify-content: flex-end;\r\n`;\r\nS.Stick = styled.div`\r\n position: absolute;\r\n align-self: center;\r\n width: 10px;\r\n top: 30%;\r\n height: 70%;\r\n border-radius: 10px 10px 0 0;\r\n background-color: black;\r\n`;\r\n\r\nconst Stick = (props) => {\r\n return (\r\n <S.Wrapper>\r\n <S.Stick></S.Stick>\r\n {props.children}\r\n </S.Wrapper>\r\n );\r\n};\r\n\r\nexport default Stick;\r\n","C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\index.js",[],["64","65"],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\App.js",[],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\reportWebVitals.js",[],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\HanoiDisplay\\index.js",[],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\HanoiDisplay\\Stick.js",[],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\Disc\\index.js",[],"C:\\Users\\Faruk\\Documents\\GitHub\\towers-of-hanoi\\src\\components\\Welcome\\index.js",[],{"ruleId":"66","replacedBy":"67"},{"ruleId":"68","replacedBy":"69"},{"ruleId":"70","severity":1,"message":"71","line":1,"column":17,"nodeType":"72","messageId":"73","endLine":1,"endColumn":25},{"ruleId":"70","severity":1,"message":"74","line":1,"column":27,"nodeType":"72","messageId":"73","endLine":1,"endColumn":36},{"ruleId":"70","severity":1,"message":"75","line":3,"column":8,"nodeType":"72","messageId":"73","endLine":3,"endColumn":12},{"ruleId":"66","replacedBy":"76"},{"ruleId":"68","replacedBy":"77"},"no-native-reassign",["78"],"no-negated-in-lhs",["79"],"no-unused-vars","'useState' is defined but never used.","Identifier","unusedVar","'useEffect' is defined but never used.","'Disc' is defined but never used.",["78"],["79"],"no-global-assign","no-unsafe-negation"]