-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintcache
1 lines (1 loc) · 8.78 KB
/
.eslintcache
1
[{"C:\\source\\todo-yesterday\\src\\index.tsx":"1","C:\\source\\todo-yesterday\\src\\reportWebVitals.ts":"2","C:\\source\\todo-yesterday\\src\\App.tsx":"3","C:\\source\\todo-yesterday\\src\\ErrorMessage.tsx":"4","C:\\source\\todo-yesterday\\src\\NavBar.tsx":"5","C:\\source\\todo-yesterday\\src\\AuthProvider.tsx":"6","C:\\source\\todo-yesterday\\src\\Welcome.tsx":"7","C:\\source\\todo-yesterday\\src\\NewEvent.tsx":"8","C:\\source\\todo-yesterday\\src\\Config.ts":"9","C:\\source\\todo-yesterday\\src\\GraphService.ts":"10","C:\\source\\todo-yesterday\\src\\Todo.tsx":"11","C:\\source\\todo-yesterday\\src\\TodoRow.tsx":"12","C:\\source\\todo-yesterday\\src\\Calendar.tsx":"13","C:\\source\\todo-yesterday\\src\\CalendarDayRow.tsx":"14"},{"size":500,"mtime":1615244085434,"results":"15","hashOfConfig":"16"},{"size":425,"mtime":1615244085492,"results":"17","hashOfConfig":"16"},{"size":1922,"mtime":1615328276913,"results":"18","hashOfConfig":"16"},{"size":647,"mtime":1615244085284,"results":"19","hashOfConfig":"16"},{"size":3514,"mtime":1615328337773,"results":"20","hashOfConfig":"16"},{"size":5335,"mtime":1615328230789,"results":"21","hashOfConfig":"16"},{"size":904,"mtime":1615317081788,"results":"22","hashOfConfig":"16"},{"size":5063,"mtime":1615244085359,"results":"23","hashOfConfig":"16"},{"size":154,"mtime":1615325891669,"results":"24","hashOfConfig":"16"},{"size":3469,"mtime":1615328343865,"results":"25","hashOfConfig":"16"},{"size":1967,"mtime":1615248391766,"results":"26","hashOfConfig":"16"},{"size":1305,"mtime":1615248287565,"results":"27","hashOfConfig":"16"},{"size":2877,"mtime":1615328245855,"results":"28","hashOfConfig":"16"},{"size":2157,"mtime":1615328274747,"results":"29","hashOfConfig":"16"},{"filePath":"30","messages":"31","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},"1797e45",{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"45","messages":"46","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"32"},{"filePath":"47","messages":"48","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"49","messages":"50","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"51","messages":"52","errorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":"53","usedDeprecatedRules":"54"},{"filePath":"55","messages":"56","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":"57","usedDeprecatedRules":"54"},{"filePath":"58","messages":"59","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"60","messages":"61","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"C:\\source\\todo-yesterday\\src\\index.tsx",[],["62","63"],"C:\\source\\todo-yesterday\\src\\reportWebVitals.ts",[],"C:\\source\\todo-yesterday\\src\\App.tsx",[],"C:\\source\\todo-yesterday\\src\\ErrorMessage.tsx",[],"C:\\source\\todo-yesterday\\src\\NavBar.tsx",[],"C:\\source\\todo-yesterday\\src\\AuthProvider.tsx",[],"C:\\source\\todo-yesterday\\src\\Welcome.tsx",[],"C:\\source\\todo-yesterday\\src\\NewEvent.tsx",[],"C:\\source\\todo-yesterday\\src\\Config.ts",[],"C:\\source\\todo-yesterday\\src\\GraphService.ts",[],"C:\\source\\todo-yesterday\\src\\Todo.tsx",["64","65","66","67"],"// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\nimport React from 'react';\nimport { NavLink as RouterNavLink } from 'react-router-dom';\nimport { Table } from 'reactstrap';\nimport moment, { Moment } from 'moment-timezone';\nimport { findOneIana } from \"windows-iana\";\nimport { TodoTask } from 'microsoft-graph';\nimport TodoRow from './TodoRow'\nimport { config } from './Config';\nimport { getUserTodosYesterday } from './GraphService';\nimport withAuthProvider, { AuthComponentProps } from './AuthProvider';\nimport './Calendar.css';\n\ninterface TodoState {\n todosLoaded: boolean;\n todos: TodoTask[];\n}\n\nclass Todo extends React.Component<AuthComponentProps, TodoState> {\n constructor(props: any) {\n super(props);\n\n this.state = {\n todosLoaded: false,\n todos: []\n };\n }\n\n async componentDidUpdate() {\n if (this.props.user && !this.state.todosLoaded)\n {\n try {\n // Get the user's access token\n var accessToken = await this.props.getAccessToken(config.scopes);\n\n // Get the user's events\n var todos = await getUserTodosYesterday(accessToken);\n\n // Update the array of events in state\n this.setState({\n todosLoaded: true,\n todos: todos\n });\n }\n catch (err) {\n this.props.setError('ERROR', JSON.stringify(err));\n }\n }\n }\n\n // <renderSnippet>\n render() {\n\n return (\n <div>\n <div className=\"calendar-week\">\n <div className=\"table-responsive\">\n <Table size=\"sm\">\n <thead>\n <tr>\n <th>Date</th>\n <th>Time</th>\n <th>Event</th>\n </tr>\n </thead>\n <tbody>\n <TodoRow todos={this.state.todos } />\n </tbody>\n </Table>\n </div>\n </div>\n </div>\n );\n }\n // </renderSnippet>\n}\n\nexport default withAuthProvider(Todo);\n",["68","69"],"C:\\source\\todo-yesterday\\src\\TodoRow.tsx",["70","71"],"// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\n// <CalendarDayRowSnippet>\nimport React from 'react';\nimport moment, { Moment } from 'moment';\nimport { TodoTask } from 'microsoft-graph';\n\ninterface CalendarDayRowProps {\n todos: TodoTask[];\n}\n\ninterface FormatMap {\n [key: string] : string;\n}\n\n// moment.js format strings are slightly\n// different than the ones returned by Graph\nconst formatMap: FormatMap = {\n \"h:mm tt\": \"h:mm A\",\n \"hh:mm tt\": \"hh:mm A\"\n};\n\n// Helper function to format Graph date/time in the user's\n// preferred format\nfunction formatDateTime(dateTime: string | undefined, format: string) {\n if (dateTime !== undefined) {\n return moment(dateTime).format(formatMap[format] || format);\n }\n}\n\nexport default class CalendarDayRow extends React.Component<CalendarDayRowProps> {\n render() {\n\n if (this.props.todos.length <= 0)\n {\n // Render an empty row for the day\n return (\n <></>\n );\n }\n\n return (\n <React.Fragment>\n {this.props.todos.map(\n function(task: TodoTask, index: Number) {\n return (\n <tr key={task.id}>\n <td>{task.title}</td>\n </tr>\n )\n }\n )}\n </React.Fragment>\n )\n }\n}\n// </CalendarDayRowSnippet>\n","C:\\source\\todo-yesterday\\src\\Calendar.tsx",[],"C:\\source\\todo-yesterday\\src\\CalendarDayRow.tsx",[],{"ruleId":"72","replacedBy":"73"},{"ruleId":"74","replacedBy":"75"},{"ruleId":"76","severity":1,"message":"77","line":4,"column":21,"nodeType":"78","messageId":"79","endLine":4,"endColumn":34},{"ruleId":"76","severity":1,"message":"80","line":6,"column":8,"nodeType":"78","messageId":"79","endLine":6,"endColumn":14},{"ruleId":"76","severity":1,"message":"81","line":6,"column":18,"nodeType":"78","messageId":"79","endLine":6,"endColumn":24},{"ruleId":"76","severity":1,"message":"82","line":7,"column":10,"nodeType":"78","messageId":"79","endLine":7,"endColumn":21},{"ruleId":"72","replacedBy":"83"},{"ruleId":"74","replacedBy":"84"},{"ruleId":"76","severity":1,"message":"81","line":6,"column":18,"nodeType":"78","messageId":"79","endLine":6,"endColumn":24},{"ruleId":"76","severity":1,"message":"85","line":26,"column":10,"nodeType":"78","messageId":"79","endLine":26,"endColumn":24},"no-native-reassign",["86"],"no-negated-in-lhs",["87"],"@typescript-eslint/no-unused-vars","'RouterNavLink' is defined but never used.","Identifier","unusedVar","'moment' is defined but never used.","'Moment' is defined but never used.","'findOneIana' is defined but never used.",["86"],["87"],"'formatDateTime' is defined but never used.","no-global-assign","no-unsafe-negation"]