-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintcache
1 lines (1 loc) · 2.83 KB
/
.eslintcache
1
[{"/home/oleh/Desktop/rrrduxxx/src/App.js":"1","/home/oleh/Desktop/rrrduxxx/src/index.js":"2","/home/oleh/Desktop/rrrduxxx/src/components/Counter.js":"3","/home/oleh/Desktop/rrrduxxx/src/store/action-types.js":"4","/home/oleh/Desktop/rrrduxxx/src/store/reducers.js":"5","/home/oleh/Desktop/rrrduxxx/src/store/action-creators.js":"6"},{"size":139,"mtime":1606817477774,"results":"7","hashOfConfig":"8"},{"size":498,"mtime":1606746175933,"results":"9","hashOfConfig":"8"},{"size":621,"mtime":1606905542438,"results":"10","hashOfConfig":"8"},{"size":86,"mtime":1606818484484,"results":"11","hashOfConfig":"8"},{"size":454,"mtime":1606818480936,"results":"12","hashOfConfig":"8"},{"size":191,"mtime":1606745690520,"results":"13","hashOfConfig":"8"},{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"16"},"1rkb5x2",{"filePath":"17","messages":"18","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"19"},{"filePath":"20","messages":"21","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"22","messages":"23","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"24","messages":"25","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"26","usedDeprecatedRules":"27"},{"filePath":"28","messages":"29","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/oleh/Desktop/rrrduxxx/src/App.js",[],["30","31"],"/home/oleh/Desktop/rrrduxxx/src/index.js",[],["32","33"],"/home/oleh/Desktop/rrrduxxx/src/components/Counter.js",[],"/home/oleh/Desktop/rrrduxxx/src/store/action-types.js",[],"/home/oleh/Desktop/rrrduxxx/src/store/reducers.js",["34"],"import { TYPE_INCREMENT, TYPE_DECREMENT, ADD_TODO } from \"./action-types\";\n\nconst initialState = {\n counter: 0,\n};\n\nexport const counterReducer = (state = initialState, action) => {\n switch (action.type) {\n case TYPE_INCREMENT:\n return {\n ...state,\n counter: state.counter + 1,\n };\n case TYPE_DECREMENT:\n return {\n ...state,\n counter: state.counter - 1,\n };\n default:\n return state;\n }\n};\n",["35","36"],"/home/oleh/Desktop/rrrduxxx/src/store/action-creators.js",[],{"ruleId":"37","replacedBy":"38"},{"ruleId":"39","replacedBy":"40"},{"ruleId":"37","replacedBy":"41"},{"ruleId":"39","replacedBy":"42"},{"ruleId":"43","severity":1,"message":"44","line":1,"column":42,"nodeType":"45","messageId":"46","endLine":1,"endColumn":50},{"ruleId":"37","replacedBy":"47"},{"ruleId":"39","replacedBy":"48"},"no-native-reassign",["49"],"no-negated-in-lhs",["50"],["49"],["50"],"no-unused-vars","'ADD_TODO' is defined but never used.","Identifier","unusedVar",["49"],["50"],"no-global-assign","no-unsafe-negation"]