todo-list/.eslintcache

1 line
12 KiB
Plaintext
Raw Normal View History

2020-12-24 17:39:00 +01:00
[{"/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/index.tsx":"1","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/Button.tsx":"2","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/CreateTask.tsx":"3","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/Header.tsx":"4","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/store/actions/actionTypes.ts":"5","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/store/reducers/reducer.ts":"6","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/Login.tsx":"7","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/SideDrawer.tsx":"8","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/store/actions/actions.ts":"9","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/App.tsx":"10","/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/components/TodoList.tsx":"11"},{"size":1082,"mtime":1607870572555,"results":"12","hashOfConfig":"13"},{"size":694,"mtime":1608811793339,"results":"14","hashOfConfig":"13"},{"size":4881,"mtime":1608819417483,"results":"15","hashOfConfig":"13"},{"size":2016,"mtime":1608815616436,"results":"16","hashOfConfig":"13"},{"size":401,"mtime":1608819875103,"results":"17","hashOfConfig":"13"},{"size":1441,"mtime":1608826539038,"results":"18","hashOfConfig":"13"},{"size":3050,"mtime":1608816450132,"results":"19","hashOfConfig":"13"},{"size":2622,"mtime":1608820837478,"results":"20","hashOfConfig":"13"},{"size":3136,"mtime":1608826712990,"results":"21","hashOfConfig":"13"},{"size":1509,"mtime":1608821206467,"results":"22","hashOfConfig":"13"},{"size":1936,"mtime":1608827652874,"results":"23","hashOfConfig":"13"},{"filePath":"24","messages":"25","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"26","usedDeprecatedRules":"27"},"mxnhpw",{"filePath":"28","messages":"29","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"30","messages":"31","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"32"},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"37","messages":"38","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"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},{"filePath":"43","messages":"44","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"45","messages":"46","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"47","messages":"48","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"/Users/tomasz.kasprowicz/Documents/UAM/todo-list/src/index.tsx",["49"],"import React from \"react\";\nimport ReactDOM from \"react-dom\";\nimport \"./index.css\";\nimport App from \"./App\";\nimport reportWebVitals from \"./reportWebVitals\";\nimport { BrowserRouter } from \"react-router-dom\";\nimport { Provider } from \"react-redux\";\nimport { createStore, applyMiddleware, compose } from \"redux\";\nimport reducer from \"./store/reducers/reducer\";\nimport { composeWithDevTools } from \"redux-devtools-extension\";\nimport thunk from \"redux-thunk\";\n\nconst store = createStore(\n reducer,\n compose(\n applyMiddleware(thunk),\n (window as any).__REDUX_DEVTOOLS_EXTENSION__ &&\n (window as any).__REDUX_DEVTOOLS_EXTENSION__()\n )\n);\n\nReactDOM.render(\n <Provider store={store}>\n <React.StrictMode>\n <BrowserRouter>\n <App />\n </BrowserRouter>\n </React.StrictMode>\n </Provider>,\n document.getElementById(\"root\")\n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log resul