-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintcache
1 lines (1 loc) · 14.2 KB
/
.eslintcache
1
[{"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\index.js":"1","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\App.js":"2","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\reportWebVitals.js":"3","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\hoc\\Layout\\Layout.js":"4","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Toolbar\\Toolbar.js":"5","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Logo\\Logo.js":"6","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Weather.js":"7","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Today\\Today.js":"8","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\InformationCard\\InformationCard.js":"9","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Temperature\\Temperature.js":"10","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Hourly\\Hourly.js":"11","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\WeatherGenerator\\WeatherGenerator.js":"12","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\SearchBar\\SearchBar.js":"13","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\reducers.js":"14","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\actionTypes.js":"15","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\actions.js":"16","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Toolbar\\CurrentLocation\\CurrentLocation.js":"17"},{"size":1004,"mtime":1615986421216,"results":"18","hashOfConfig":"19"},{"size":295,"mtime":1615986412519,"results":"20","hashOfConfig":"19"},{"size":362,"mtime":499162500000,"results":"21","hashOfConfig":"19"},{"size":426,"mtime":1616751045305,"results":"22","hashOfConfig":"19"},{"size":225,"mtime":1616069598164,"results":"23","hashOfConfig":"19"},{"size":191,"mtime":1613044016670,"results":"24","hashOfConfig":"19"},{"size":4487,"mtime":1616759996159,"results":"25","hashOfConfig":"19"},{"size":150,"mtime":1612790714624,"results":"26","hashOfConfig":"19"},{"size":1941,"mtime":1616752514577,"results":"27","hashOfConfig":"19"},{"size":764,"mtime":1616751222357,"results":"28","hashOfConfig":"19"},{"size":448,"mtime":1616759832766,"results":"29","hashOfConfig":"19"},{"size":1465,"mtime":1612865568896,"results":"30","hashOfConfig":"19"},{"size":298,"mtime":1615900828467,"results":"31","hashOfConfig":"19"},{"size":1693,"mtime":1616067572913,"results":"32","hashOfConfig":"19"},{"size":414,"mtime":1616067512045,"results":"33","hashOfConfig":"19"},{"size":1373,"mtime":1616067556108,"results":"34","hashOfConfig":"19"},{"size":663,"mtime":1615983896971,"results":"35","hashOfConfig":"19"},{"filePath":"36","messages":"37","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"38","usedDeprecatedRules":"39"},"1i19njw",{"filePath":"40","messages":"41","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"42","messages":"43","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"44","messages":"45","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"46","messages":"47","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"48","usedDeprecatedRules":"39"},{"filePath":"49","messages":"50","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"51","usedDeprecatedRules":"39"},{"filePath":"52","messages":"53","errorCount":0,"warningCount":14,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"54","messages":"55","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"56","messages":"57","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"58","usedDeprecatedRules":"39"},{"filePath":"59","messages":"60","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"61","messages":"62","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"63","messages":"64","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"65","messages":"66","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"67"},{"filePath":"68","messages":"69","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"70","messages":"71","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"72","messages":"73","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"39"},{"filePath":"74","messages":"75","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"76"},"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\index.js",["77"],"import React from \"react\";\nimport ReactDOM from \"react-dom\";\nimport { Provider } from \"react-redux\";\nimport { createStore, applyMiddleware, compose, combineReducers } from \"redux\";\nimport thunk from \"redux-thunk\";\n\nimport rootReducer from \"./redux/reducers\";\nimport \"./index.css\";\nimport App from \"./App\";\nimport reportWebVitals from \"./reportWebVitals\";\n\nrequire('dotenv').config()\n\n\nconst composeEnhancers =\n process.env.NODE_ENV === \"development\"\n ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__\n : null || compose;\n\nconst store = createStore(\n rootReducer,\n composeEnhancers(applyMiddleware(thunk))\n);\n\n\nReactDOM.render(\n <Provider store={store}>\n <React.StrictMode>\n <App />\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 results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n",["78","79"],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\App.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\reportWebVitals.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\hoc\\Layout\\Layout.js",["80"],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Toolbar\\Toolbar.js",["81"],"import React from \"react\"\r\nimport Logo from \"../Logo/Logo\"\r\n\r\nimport classes from \"./Toolbar.module.css\"\r\n\r\nconst toolbar = (props) => (\r\n <header className={classes.Toolbar}>\r\n\r\n </header>\r\n)\r\n\r\nexport default toolbar;","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Logo\\Logo.js",["82"],"import React from \"react\"\r\nimport Logo from '../../assets/logo.png';\r\n\r\n\r\nconst logo = () => (\r\n<div>\r\n <img src={Logo} height={\"50\"}></img>\r\n </div>\r\n );\r\n\r\n\r\n\r\nexport default logo;","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Weather.js",["83","84","85","86","87","88","89","90","91","92","93","94","95","96"],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Today\\Today.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\InformationCard\\InformationCard.js",["97"],"import React from \"react\";\r\nimport { Grid, Typography } from \"@material-ui/core\";\r\nimport { WiThermometer } from \"weather-icons-react\";\r\nimport { WiHumidity } from \"weather-icons-react\";\r\nimport { WiBarometer } from \"weather-icons-react\";\r\nimport { WiStrongWind } from \"weather-icons-react\";\r\nimport { WiRaindrop } from \"weather-icons-react\";\r\nimport { WiCelsius } from \"weather-icons-react\";\r\n\r\n\r\nimport WeatherGenerator from \"../../WeatherGenerator/WeatherGenerator\";\r\n\r\nconst informationCard = (props) => {\r\n return (\r\n <Grid container spacing={3}>\r\n <Grid item xs>\r\n <WiRaindrop size={30} color=\"white\" />\r\n <Typography>Rain</Typography>\r\n <Typography>{props.rainVolume} mm/h </Typography>\r\n </Grid>\r\n <Grid item xs>\r\n <WiThermometer size={30} color=\"white\" />\r\n <Typography>Feels Like</Typography>\r\n <Typography>{props.feelsLike} \r\n</Typography>\r\n </Grid>\r\n <Grid item xs>\r\n <WiBarometer size={30} color=\"white\" />\r\n <Typography>Air Pressure</Typography>\r\n <Typography>{props.pressure}</Typography>\r\n </Grid>\r\n <Grid container spacing={3}>\r\n <Grid item xs>\r\n <WiHumidity size={30} color=\"white\" />\r\n <Typography>Humidity</Typography>\r\n <Typography>\r\n {props.humidity}\r\n <span>%</span>\r\n </Typography>\r\n </Grid>\r\n <Grid item xs>\r\n <WiStrongWind size={30} color=\"white\" />\r\n <Typography>Wind Speed</Typography>\r\n <Typography>{props.wind}</Typography>\r\n </Grid>\r\n <Grid item xs>\r\n <WeatherGenerator weather={props.main} size={30} color=\"white\" />\r\n <Typography>General Overcast</Typography>\r\n <Typography>\r\n {props.overcast}\r\n <span>%</span>\r\n </Typography>\r\n </Grid>\r\n </Grid>\r\n </Grid>\r\n );\r\n};\r\n\r\nexport default informationCard;\r\n","C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Temperature\\Temperature.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Weather\\Hourly\\Hourly.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\WeatherGenerator\\WeatherGenerator.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\SearchBar\\SearchBar.js",[],["98","99"],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\reducers.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\actionTypes.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\redux\\actions.js",[],"C:\\Users\\milli\\Documents\\GitHub\\weather-app\\src\\components\\Toolbar\\CurrentLocation\\CurrentLocation.js",[],["100","101"],{"ruleId":"102","severity":1,"message":"103","line":4,"column":49,"nodeType":"104","messageId":"105","endLine":4,"endColumn":64},{"ruleId":"106","replacedBy":"107"},{"ruleId":"108","replacedBy":"109"},{"ruleId":"102","severity":1,"message":"110","line":3,"column":8,"nodeType":"104","messageId":"105","endLine":3,"endColumn":15},{"ruleId":"102","severity":1,"message":"111","line":2,"column":8,"nodeType":"104","messageId":"105","endLine":2,"endColumn":12},{"ruleId":"112","severity":1,"message":"113","line":7,"column":5,"nodeType":"114","endLine":7,"endColumn":35},{"ruleId":"102","severity":1,"message":"115","line":1,"column":17,"nodeType":"104","messageId":"105","endLine":1,"endColumn":26},{"ruleId":"102","severity":1,"message":"116","line":2,"column":8,"nodeType":"104","messageId":"105","endLine":2,"endColumn":13},{"ruleId":"102","severity":1,"message":"117","line":3,"column":8,"nodeType":"104","messageId":"105","endLine":3,"endColumn":13},{"ruleId":"102","severity":1,"message":"118","line":5,"column":3,"nodeType":"104","messageId":"105","endLine":5,"endColumn":6},{"ruleId":"102","severity":1,"message":"119","line":6,"column":3,"nodeType":"104","messageId":"105","endLine":6,"endColumn":10},{"ruleId":"102","severity":1,"message":"120","line":8,"column":3,"nodeType":"104","messageId":"105","endLine":8,"endColumn":11},{"ruleId":"102","severity":1,"message":"121","line":9,"column":3,"nodeType":"104","messageId":"105","endLine":9,"endColumn":15},{"ruleId":"102","severity":1,"message":"122","line":10,"column":3,"nodeType":"104","messageId":"105","endLine":10,"endColumn":13},{"ruleId":"102","severity":1,"message":"123","line":11,"column":3,"nodeType":"104","messageId":"105","endLine":11,"endColumn":13},{"ruleId":"102","severity":1,"message":"124","line":13,"column":8,"nodeType":"104","messageId":"105","endLine":13,"endColumn":13},{"ruleId":"102","severity":1,"message":"125","line":14,"column":8,"nodeType":"104","messageId":"105","endLine":14,"endColumn":22},{"ruleId":"102","severity":1,"message":"126","line":15,"column":3,"nodeType":"104","messageId":"105","endLine":15,"endColumn":12},{"ruleId":"102","severity":1,"message":"127","line":16,"column":3,"nodeType":"104","messageId":"105","endLine":16,"endColumn":11},{"ruleId":"128","severity":1,"message":"129","line":54,"column":6,"nodeType":"130","endLine":54,"endColumn":59,"suggestions":"131"},{"ruleId":"102","severity":1,"message":"132","line":8,"column":10,"nodeType":"104","messageId":"105","endLine":8,"endColumn":19},{"ruleId":"106","replacedBy":"133"},{"ruleId":"108","replacedBy":"134"},{"ruleId":"106","replacedBy":"135"},{"ruleId":"108","replacedBy":"136"},"no-unused-vars","'combineReducers' is defined but never used.","Identifier","unusedVar","no-native-reassign",["137"],"no-negated-in-lhs",["138"],"'Toolbar' is defined but never used.","'Logo' is defined but never used.","jsx-a11y/alt-text","img elements must have an alt prop, either with meaningful text, or an empty string for decorative images.","JSXOpeningElement","'Component' is defined but never used.","'axios' is defined but never used.","'Today' is defined but never used.","'Box' is defined but never used.","'Divider' is defined but never used.","'GridList' is defined but never used.","'GridListTile' is defined but never used.","'makeStyles' is defined but never used.","'Typography' is defined but never used.","'Paper' is defined but never used.","'ReverseGeocode' is defined but never used.","'ILocation' is defined but never used.","'IGeocode' is defined but never used.","react-hooks/exhaustive-deps","React Hook useEffect has a missing dependency: 'getApi'. Either include it or remove the dependency array.","ArrayExpression",["139"],"'WiCelsius' is defined but never used.",["137"],["138"],["137"],["138"],"no-global-assign","no-unsafe-negation",{"desc":"140","fix":"141"},"Update the dependencies array to be: [setFetching, getWeatherData, setLocation, long, lat, getApi]",{"range":"142","text":"143"},[1565,1618],"[setFetching, getWeatherData, setLocation, long, lat, getApi]"]