-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy path.eslintcache
1 lines (1 loc) · 6.39 KB
/
.eslintcache
1
[{"/home/ec2-user/environment/itss_std_react_todo_k62/src/index.js":"1","/home/ec2-user/environment/itss_std_react_todo_k62/src/App.js":"2","/home/ec2-user/environment/itss_std_react_todo_k62/src/reportWebVitals.js":"3","/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Todo.js":"4","/home/ec2-user/environment/itss_std_react_todo_k62/src/components/TodoItem.js":"5","/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Input.js":"6","/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Filter.js":"7","/home/ec2-user/environment/itss_std_react_todo_k62/src/hooks/storage.js":"8","/home/ec2-user/environment/itss_std_react_todo_k62/src/lib/util.js":"9"},{"size":500,"mtime":1617675510410,"results":"10","hashOfConfig":"11"},{"size":274,"mtime":1617675510406,"results":"12","hashOfConfig":"11"},{"size":362,"mtime":1617675510410,"results":"13","hashOfConfig":"11"},{"size":2168,"mtime":1617809423919,"results":"14","hashOfConfig":"11"},{"size":660,"mtime":1617808055939,"results":"15","hashOfConfig":"11"},{"size":806,"mtime":1617682992312,"results":"16","hashOfConfig":"11"},{"size":905,"mtime":1617808055931,"results":"17","hashOfConfig":"11"},{"size":993,"mtime":1617809423923,"results":"18","hashOfConfig":"11"},{"size":68,"mtime":1617675510410,"results":"19","hashOfConfig":"11"},{"filePath":"20","messages":"21","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},"vh3dly",{"filePath":"23","messages":"24","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"25","messages":"26","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"27","messages":"28","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"22"},{"filePath":"31","messages":"32","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"33","usedDeprecatedRules":"22"},{"filePath":"34","messages":"35","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":"36","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"},"/home/ec2-user/environment/itss_std_react_todo_k62/src/index.js",[],["41","42"],"/home/ec2-user/environment/itss_std_react_todo_k62/src/App.js",[],"/home/ec2-user/environment/itss_std_react_todo_k62/src/reportWebVitals.js",[],"/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Todo.js",["43","44"],"/home/ec2-user/environment/itss_std_react_todo_k62/src/components/TodoItem.js",[],"/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Input.js",["45"],"import React, { useState } from 'react';\n/* \n 【inputコンポーネント】\n ・新しいTodoを作成するINPUTフィールドを作成するコンポーネント\n ・Enterをクリックされたら入力された文字を使って新しいTodoを作成する\n*/\nfunction Input( ) {\n\n return (\n <div className=\"panel-block\">\n </div>\n );\n}\n\nexport default Input;\n","/home/ec2-user/environment/itss_std_react_todo_k62/src/components/Filter.js",["46","47","48"],"/* \n 【Filterコンポーネント】\n ・該当するTodoをステータス毎にで分けてリスト表示する\n ・タブで表示する\n ・サポートするステータスは「すべて」「未完了」「完了済み」\n*/\nfunction Filter({value, onChange} ) {\n const handleClick = (key, e) => {\n e.preventDefault();\n onChange(key);\n };\n return (\n <div className=\"panel-tabs\">\n <a\n hfef=\"#\"\n onClick={handleClick.bind(null, 'ALL')}\n className={value === 'ALL' ? 'is-active' : ''}\n >全て</a>\n <a\n href=\"#\"\n onClick={handleClick.bind(null, 'TODO')}\n className={value === 'TODO' ? 'is-active' : ''}\n >未完了</a>\n <a\n href=\"#\"\n onClick={handleClick.bind(null, 'DONE')}\n className={value === 'DONE' ? 'is-active' : ''}\n >完了済み</a>\n </div>\n );\n}\n\nexport default Filter","/home/ec2-user/environment/itss_std_react_todo_k62/src/hooks/storage.js",[],"/home/ec2-user/environment/itss_std_react_todo_k62/src/lib/util.js",[],{"ruleId":"49","replacedBy":"50"},{"ruleId":"51","replacedBy":"52"},{"ruleId":"53","severity":1,"message":"54","line":1,"column":17,"nodeType":"55","messageId":"56","endLine":1,"endColumn":25},{"ruleId":"57","severity":1,"message":"58","line":32,"column":42,"nodeType":"59","messageId":"60","endLine":32,"endColumn":44},{"ruleId":"53","severity":1,"message":"54","line":1,"column":17,"nodeType":"55","messageId":"56","endLine":1,"endColumn":25},{"ruleId":"61","severity":1,"message":"62","line":14,"column":7,"nodeType":"63","endLine":18,"endColumn":8},{"ruleId":"61","severity":1,"message":"64","line":19,"column":7,"nodeType":"63","endLine":23,"endColumn":8},{"ruleId":"61","severity":1,"message":"64","line":24,"column":7,"nodeType":"63","endLine":28,"endColumn":8},"no-native-reassign",["65"],"no-negated-in-lhs",["66"],"no-unused-vars","'useState' is defined but never used.","Identifier","unusedVar","array-callback-return","Array.prototype.filter() expects a value to be returned at the end of arrow function.","ArrowFunctionExpression","expectedAtEnd","jsx-a11y/anchor-is-valid","The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md","JSXOpeningElement","The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md","no-global-assign","no-unsafe-negation"]