-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintcache
1 lines (1 loc) · 4.68 KB
/
.eslintcache
1
[{"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/index.js":"1","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/App.js":"2","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/reportWebVitals.js":"3","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/index.jsx":"4","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/moodForm.jsx":"5","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/moodList.jsx":"6","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/MoodReducer.js":"7"},{"size":718,"mtime":1611695252591,"results":"8","hashOfConfig":"9"},{"size":316,"mtime":1611695295808,"results":"10","hashOfConfig":"9"},{"size":362,"mtime":1611692664824,"results":"11","hashOfConfig":"9"},{"size":108,"mtime":1611692798410,"results":"12","hashOfConfig":"9"},{"size":1235,"mtime":1611695838332,"results":"13","hashOfConfig":"9"},{"size":870,"mtime":1611695681849,"results":"14","hashOfConfig":"9"},{"size":359,"mtime":1611695356352,"results":"15","hashOfConfig":"9"},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"18"},"12awkfo",{"filePath":"19","messages":"20","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"21","usedDeprecatedRules":"18"},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"18"},{"filePath":"24","messages":"25","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"18"},{"filePath":"26","messages":"27","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"28","messages":"29","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"18"},{"filePath":"30","messages":"31","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":"32","usedDeprecatedRules":"18"},"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/index.js",[],["33","34"],"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/App.js",["35"],"import logo from './logo.svg';\nimport './App.css';\nimport { MoodForm, MoodList } from './components/mood';\n\n\nfunction App() {\n return (\n\n <div>\n <div>\n <MoodForm></MoodForm>\n </div>\n <div>\n <MoodList></MoodList>\n </div>\n </div>\n\n );\n}\n\nexport default App;\n","/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/reportWebVitals.js",[],"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/index.jsx",[],"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/moodForm.jsx",[],"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/components/mood/moodList.jsx",[],"/home/lorena/Desktop/clases/elearning/diplomaturaReact/hooksBasico/redux/mood-hooks-redux/src/MoodReducer.js",["36","37","38"],"export default function(state = [], action) {\n switch (action.type) {\n case 'ADD':\n return [...state, action.data];\n case 'DELETE':\n const newState = state.filter(s => s.mood != action.data.mood && s.description != action.data.description);\n return newState;\n default:\n return state;\n }\n}",{"ruleId":"39","replacedBy":"40"},{"ruleId":"41","replacedBy":"42"},{"ruleId":"43","severity":1,"message":"44","line":1,"column":8,"nodeType":"45","messageId":"46","endLine":1,"endColumn":12},{"ruleId":"47","severity":1,"message":"48","line":1,"column":1,"nodeType":"49","endLine":11,"endColumn":2},{"ruleId":"50","severity":1,"message":"51","line":6,"column":55,"nodeType":"52","messageId":"53","endLine":6,"endColumn":57},{"ruleId":"50","severity":1,"message":"51","line":6,"column":92,"nodeType":"52","messageId":"53","endLine":6,"endColumn":94},"no-native-reassign",["54"],"no-negated-in-lhs",["55"],"no-unused-vars","'logo' is defined but never used.","Identifier","unusedVar","import/no-anonymous-default-export","Unexpected default export of anonymous function","ExportDefaultDeclaration","eqeqeq","Expected '!==' and instead saw '!='.","BinaryExpression","unexpected","no-global-assign","no-unsafe-negation"]