Open TriCogz opened 6 months ago
2024-05-01T17:07:40.060029504Z | ^
2024-05-01T17:07:40.060032804Z 407 | const inputMinistry = this.form.client.ministry || null;
2024-05-01T17:07:40.060036304Z 408 | if (!inputMinistry) {
2024-05-01T17:07:40.060039704Z 409 | this.form.client.ministry = new MinistryDto();
2024-05-01T17:07:40.060043104Z
2024-05-01T17:07:40.060046204Z
2024-05-01T17:07:40.060049404Z error: Unexpected tab character (no-tabs) at src/components/timeMachine/projects/ProjectBaseInfo.vue:407:1:
2024-05-01T17:07:40.060056404Z 405 | methods: {
2024-05-01T17:07:40.060059704Z 406 | ministryCheck(e) {
2024-05-01T17:07:40.060063004Z > 407 | const inputMinistry = this.form.client.ministry || null;
2024-05-01T17:07:40.060071304Z | ^
2024-05-01T17:07:40.060074904Z 408 | if (!inputMinistry) {
2024-05-01T17:07:40.060078205Z 409 | this.form.client.ministry = new MinistryDto();
2024-05-01T17:07:40.060081605Z 410 | }
2024-05-01T17:07:40.060087005Z
2024-05-01T17:07:40.060092505Z
2024-05-01T17:07:40.060098205Z error: Mixed spaces and tabs (no-mixed-spaces-and-tabs) at src/components/timeMachine/projects/ProjectBaseInfo.vue:407:2:
2024-05-01T17:07:40.060104505Z 405 | methods: {
2024-05-01T17:07:40.060108405Z 406 | ministryCheck(e) {
2024-05-01T17:07:40.060111905Z > 407 | const inputMinistry = this.form.client.ministry || null;
2024-05-01T17:07:40.060115405Z | ^
2024-05-01T17:07:40.060118805Z 408 | if (!inputMinistry) {
2024-05-01T17:07:40.060123105Z 409 | this.form.client.ministry = new MinistryDto();
2024-05-01T17:07:40.060126505Z 410 | }
2024-05-01T17:07:40.060129705Z
2024-05-01T17:07:40.060132905Z
2024-05-01T17:07:40.060136005Z error: 'e' is defined but never used (no-unused-vars) at src/components/timeMachine/projects/ProjectBaseInfo.vue:442:18:
2024-05-01T17:07:40.060139505Z 440 | return ${month}/${day}/${year}
;
2024-05-01T17:07:40.060142805Z 441 | },
2024-05-01T17:07:40.060146005Z > 442 | onBlurNumber(e) {
2024-05-01T17:07:40.060149205Z | ^
2024-05-01T17:07:40.060152505Z 443 | this.visible = false;
2024-05-01T17:07:40.060155905Z 444 | this.temp = this.amount;
2024-05-01T17:07:40.060159105Z 445 | this.amount = this.thousandSeprator(this.amount);
2024-05-01T17:07:40.060162405Z
2024-05-01T17:07:40.060165605Z
2024-05-01T17:07:40.060171005Z error: Duplicate key 'thousandSeprator' (no-dupe-keys) at src/components/timeMachine/projects/ProjectBaseInfo.vue:451:5:
2024-05-01T17:07:40.060177205Z 449 | this.amount = this.temp;
2024-05-01T17:07:40.060182905Z 450 | },
2024-05-01T17:07:40.060188905Z > 451 | thousandSeprator(amount) {
2024-05-01T17:07:40.060192506Z | ^
2024-05-01T17:07:40.060195806Z 452 | if (amount !== '' || amount !== undefined || amount !== 0 || amount !== '0' || amount !== null) {
2024-05-01T17:07:40.060199306Z 453 | return amount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
2024-05-01T17:07:40.060203006Z 454 | }
2024-05-01T17:07:40.060206206Z
2024-05-01T17:07:40.060209306Z
2024-05-01T17:07:40.060212506Z error: Duplicated key 'thousandSeprator' (vue/no-dupe-keys) at src/components/timeMachine/projects/ProjectBaseInfo.vue:451:5:
2024-05-01T17:07:40.060220806Z 449 | this.amount = this.temp;
2024-05-01T17:07:40.060224406Z 450 | },
2024-05-01T17:07:40.060227606Z > 451 | thousandSeprator(amount) {
2024-05-01T17:07:40.060230906Z | ^
2024-05-01T17:07:40.060234306Z 452 | if (amount !== '' || amount !== undefined || amount !== 0 || amount !== '0' || amount !== null) {
2024-05-01T17:07:40.060237706Z 453 | return amount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
2024-05-01T17:07:40.060241306Z 454 | }
2024-05-01T17:07:40.060245606Z
2024-05-01T17:07:40.060251006Z
2024-05-01T17:07:40.060256506Z error: Expected '===' and instead saw '==' (eqeqeq) at src/components/timeMachine/projects/ProjectBaseInfo.vue:471:99:
2024-05-01T17:07:40.060262606Z 469 | // ministry part starts
2024-05-01T17:07:40.060268006Z 470 | for (let i = 0; i < this.$store.state.ministries.length; i++) {
2024-05-01T17:07:40.060273906Z > 471 | if (this.form.client && this.form.client.ministry && this.$store.state.ministries[i].id == this.form.client.ministry.id) {
2024-05-01T17:07:40.060279906Z | ^
2024-05-01T17:07:40.060285506Z 472 | this.form.client.ministry.ministryName = this.$store.state.ministries[i].ministryName;
2024-05-01T17:07:40.060296406Z 473 | }
2024-05-01T17:07:40.060301906Z 474 | }
2024-05-01T17:07:40.060307307Z
2024-05-01T17:07:40.060312707Z
2024-05-01T17:07:40.060324407Z error: Strings must use singlequote (quotes) at src/components/timeMachine/projects/ProjectBaseInfo.vue:493:35:
2024-05-01T17:07:40.060330707Z 491 | scope.$refs.snackbar.displaySnackbar('success', 'Updated');
2024-05-01T17:07:40.060335707Z 492 | scope.$store.dispatch('fetchProjects');
2024-05-01T17:07:40.060341407Z > 493 | scope.$store.dispatch("fetchAllProjects");
2024-05-01T17:07:40.060353907Z | ^
2024-05-01T17:07:40.060359307Z 494 | },
2024-05-01T17:07:40.060364607Z 495 | (err) => {
2024-05-01T17:07:40.060370207Z 496 | this.saveProjectLoading = false;
2024-05-01T17:07:40.060375907Z
2024-05-01T17:07:40.060381507Z
2024-05-01T17:07:40.060386807Z 9 errors found.
2024-05-01T17:07:40.060392607Z 2 errors potentially fixable with the --fix
option.
2024-05-01T17:07:40.060398407Z
2024-05-01T17:07:40.060404107Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.060409807Z error: Trailing spaces not allowed (no-trailing-spaces) at src/components/timeMachine/projects/ProjectsTable.vue:151:9:
2024-05-01T17:07:40.060424308Z 149 | pagination: {
2024-05-01T17:07:40.060431208Z 150 | rowsPerPage: 10,
2024-05-01T17:07:40.060437108Z > 151 | },
2024-05-01T17:07:40.060443308Z | ^
2024-05-01T17:07:40.060449308Z 152 | };
2024-05-01T17:07:40.060457808Z 153 | },
2024-05-01T17:07:40.060463308Z 154 | computed: {
2024-05-01T17:07:40.060469308Z
2024-05-01T17:07:40.060479808Z
2024-05-01T17:07:40.060486808Z error: 'res' is defined but never used (no-unused-vars) at src/components/timeMachine/projects/ProjectsTable.vue:179:16:
2024-05-01T17:07:40.060492708Z 177 | this.$store
2024-05-01T17:07:40.060498308Z 178 | .dispatch('fetchProjectContacts', { id: this.$store.state.activeProject.id })
2024-05-01T17:07:40.060504208Z > 179 | .then((res) => {
2024-05-01T17:07:40.060508108Z | ^
2024-05-01T17:07:40.060511608Z 180 | this.$router.push({ path: project/${id}
});
2024-05-01T17:07:40.060515008Z 181 | });
2024-05-01T17:07:40.060518208Z 182 | },
2024-05-01T17:07:40.060521408Z
2024-05-01T17:07:40.060524608Z
2024-05-01T17:07:40.060527808Z 2 errors found.
2024-05-01T17:07:40.060531008Z 1 error potentially fixable with the --fix
option.
2024-05-01T17:07:40.060534308Z
2024-05-01T17:07:40.060537609Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.060541009Z error: Trailing spaces not allowed (no-trailing-spaces) at src/components/timeMachine/timesheets/AddTimeRecord.vue:41:44:
2024-05-01T17:07:40.060544509Z 39 | <v-select
2024-05-01T17:07:40.060547909Z 40 | class="currentuser"
2024-05-01T17:07:40.060551309Z > 41 | v-model="form.userId"
2024-05-01T17:07:40.060554709Z | ^
2024-05-01T17:07:40.060558109Z 42 | :rules="requiredRule"
2024-05-01T17:07:40.060561409Z 43 | @input="onChangeUser(form.userId)"
2024-05-01T17:07:40.060566809Z 44 | :items="userList"
2024-05-01T17:07:40.060572409Z
2024-05-01T17:07:40.060578109Z
2024-05-01T17:07:40.060583509Z error: Missing trailing comma (comma-dangle) at src/components/timeMachine/timesheets/AddTimeRecord.vue:313:16:
2024-05-01T17:07:40.060589409Z 311 | this.MOU_USED_AMOUNT_LEVELS = {
2024-05-01T17:07:40.060593009Z 312 | WARNING: 0.9,
2024-05-01T17:07:40.060596309Z > 313 | DANGER: 1
2024-05-01T17:07:40.060599609Z | ^
2024-05-01T17:07:40.060609209Z 314 | };
2024-05-01T17:07:40.060614109Z 315 | },
2024-05-01T17:07:40.060617509Z 316 | methods: {
2024-05-01T17:07:40.060620809Z
2024-05-01T17:07:40.060624009Z
2024-05-01T17:07:40.060627209Z error: Missing trailing comma (comma-dangle) at src/components/timeMachine/timesheets/AddTimeRecord.vue:342:93:
2024-05-01T17:07:40.060630609Z 340 | totalBilledAmount: totalAmountBilled.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','),
2024-05-01T17:07:40.060634309Z 341 | mouUsedAmount: project.isCostRecoverable && project.mouAmount > 0 ? totalAmountBilled / project.mouAmount : 0,
2024-05-01T17:07:40.060638109Z > 342 | hasValidFinanceCodes: project.hasValidFinanceCodes || !project.isCostRecoverable
2024-05-01T17:07:40.060641509Z | ^
2024-05-01T17:07:40.060644909Z 343 | }
2024-05-01T17:07:40.060648209Z 344 | }
2024-05-01T17:07:40.060653210Z 345 | }
2024-05-01T17:07:40.060658610Z
2024-05-01T17:07:40.060663810Z
2024-05-01T17:07:40.060669310Z error: Missing semicolon (semi) at src/components/timeMachine/timesheets/AddTimeRecord.vue:343:12:
2024-05-01T17:07:40.060674910Z 341 | mouUsedAmount: project.isCostRecoverable && project.mouAmount > 0 ? totalAmountBilled / project.mouAmount : 0,
2024-05-01T17:07:40.060680410Z 342 | hasValidFinanceCodes: project.hasValidFinanceCodes || !project.isCostRecoverable
2024-05-01T17:07:40.060685710Z > 343 | }
2024-05-01T17:07:40.060690710Z | ^
2024-05-01T17:07:40.060696310Z 344 | }
2024-05-01T17:07:40.060701710Z 345 | }
2024-05-01T17:07:40.060707810Z 346 | return {
2024-05-01T17:07:40.060713610Z
2024-05-01T17:07:40.060717310Z
2024-05-01T17:07:40.060720510Z error: Missing trailing comma (comma-dangle) at src/components/timeMachine/timesheets/AddTimeRecord.vue:350:35:
2024-05-01T17:07:40.060724010Z 348 | totalBilledAmount: 0,
2024-05-01T17:07:40.060727310Z 349 | mouUsedAmount: 0,
2024-05-01T17:07:40.060730710Z > 350 | hasValidFinanceCodes: true
2024-05-01T17:07:40.060734010Z | ^
2024-05-01T17:07:40.060737310Z 351 | }
2024-05-01T17:07:40.060740610Z 352 | },
2024-05-01T17:07:40.060743910Z 353 | fetchUser() {
2024-05-01T17:07:40.060747210Z
2024-05-01T17:07:40.060750310Z
2024-05-01T17:07:40.060753510Z error: Missing semicolon (semi) at src/components/timeMachine/timesheets/AddTimeRecord.vue:351:8:
2024-05-01T17:07:40.060762210Z 349 | mouUsedAmount: 0,
2024-05-01T17:07:40.060765710Z 350 | hasValidFinanceCodes: true
2024-05-01T17:07:40.060769611Z > 351 | }
2024-05-01T17:07:40.060775111Z | ^
2024-05-01T17:07:40.060780811Z 352 | },
2024-05-01T17:07:40.060786511Z 353 | fetchUser() {
2024-05-01T17:07:40.060792511Z 354 | const referenceId = this.$store.state.activeUser.refId;
2024-05-01T17:07:40.060797011Z
2024-05-01T17:07:40.060800411Z
2024-05-01T17:07:40.060803511Z error: Missing trailing comma (comma-dangle) at src/components/timeMachine/timesheets/AddTimeRecord.vue:383:26:
2024-05-01T17:07:40.060807011Z 381 | requiredRule: [v => !!v || 'This field required'],
2024-05-01T17:07:40.060810411Z 382 | dialog: false,
2024-05-01T17:07:40.060813811Z > 383 | form: { ...form }
2024-05-01T17:07:40.060817211Z | ^
2024-05-01T17:07:40.060820511Z 384 | };
2024-05-01T17:07:40.060823711Z 385 | },
2024-05-01T17:07:40.060828111Z 386 | async onChangeUser(userId, editMode = false) {
2024-05-01T17:07:40.060831511Z
2024-05-01T17:07:40.060834611Z
2024-05-01T17:07:40.060837811Z error: Block must not be padded by blank lines (padded-blocks) at src/components/timeMachine/timesheets/AddTimeRecord.vue:590:7:
2024-05-01T17:07:40.060841311Z 588 | }
2024-05-01T17:07:40.060844511Z 589 |
2024-05-01T17:07:40.060847711Z > 590 | });
2024-05-01T17:07:40.060850911Z | ^
2024-05-01T17:07:40.060854211Z 591 |
2024-05-01T17:07:40.060859311Z 592 | this.calculateTimesheetAmountBilled();
2024-05-01T17:07:40.060865011Z 593 | },
2024-05-01T17:07:40.060871111Z
2024-05-01T17:07:40.060877411Z
2024-05-01T17:07:40.060881011Z error: Expected indentation of 8 spaces but found 10 (indent) at src/components/timeMachine/timesheets/AddTimeRecord.vue:703:1:
2024-05-01T17:07:40.060884612Z 701 | );
2024-05-01T17:07:40.060887812Z 702 | submitItems.forEach((timesheet) => {
2024-05-01T17:07:40.060891212Z > 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.060894612Z | ^
2024-05-01T17:07:40.060897812Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.060901312Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.060904912Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.060913412Z
2024-05-01T17:07:40.060916712Z
2024-05-01T17:07:40.060919812Z error: Expected '===' and instead saw '==' (eqeqeq) at src/components/timeMachine/timesheets/AddTimeRecord.vue:704:60:
2024-05-01T17:07:40.060923412Z 702 | submitItems.forEach((timesheet) => {
2024-05-01T17:07:40.060926712Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.060930112Z > 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.060933712Z | ^
2024-05-01T17:07:40.060937112Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.060942412Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.060948512Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.060954612Z
2024-05-01T17:07:40.060960412Z
2024-05-01T17:07:40.060964812Z error: Operator '==' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:704:60:
2024-05-01T17:07:40.060968312Z 702 | submitItems.forEach((timesheet) => {
2024-05-01T17:07:40.060971712Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.060975112Z > 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.060978712Z | ^
2024-05-01T17:07:40.060983012Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.060986512Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.060990012Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.060993412Z
2024-05-01T17:07:40.060996512Z
2024-05-01T17:07:40.060999613Z error: Strings must use singlequote (quotes) at src/components/timeMachine/timesheets/AddTimeRecord.vue:704:62:
2024-05-01T17:07:40.061003113Z 702 | submitItems.forEach((timesheet) => {
2024-05-01T17:07:40.061006513Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061009813Z > 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061013213Z | ^
2024-05-01T17:07:40.061017013Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061020413Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061031613Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061038713Z
2024-05-01T17:07:40.061044713Z
2024-05-01T17:07:40.061048813Z error: Operator '?' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:704:64:
2024-05-01T17:07:40.061052313Z 702 | submitItems.forEach((timesheet) => {
2024-05-01T17:07:40.061055713Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061059113Z > 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061062613Z | ^
2024-05-01T17:07:40.061065913Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061069413Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061073013Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061076513Z
2024-05-01T17:07:40.061079613Z
2024-05-01T17:07:40.061082813Z error: Expected '===' and instead saw '==' (eqeqeq) at src/components/timeMachine/timesheets/AddTimeRecord.vue:705:60:
2024-05-01T17:07:40.061086313Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061089713Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061093213Z > 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061097513Z | ^
2024-05-01T17:07:40.061100913Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061104413Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061108613Z 708 | });
2024-05-01T17:07:40.061114014Z
2024-05-01T17:07:40.061120014Z
2024-05-01T17:07:40.061125814Z error: Operator '==' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:705:60:
2024-05-01T17:07:40.061131114Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061134614Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061138014Z > 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061141514Z | ^
2024-05-01T17:07:40.061144914Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061152914Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061156614Z 708 | });
2024-05-01T17:07:40.061159814Z
2024-05-01T17:07:40.061163114Z
2024-05-01T17:07:40.061166214Z error: Strings must use singlequote (quotes) at src/components/timeMachine/timesheets/AddTimeRecord.vue:705:62:
2024-05-01T17:07:40.061169614Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061173014Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061176414Z > 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061179914Z | ^
2024-05-01T17:07:40.061183314Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061186714Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061190414Z 708 | });
2024-05-01T17:07:40.061195814Z
2024-05-01T17:07:40.061206914Z
2024-05-01T17:07:40.061213614Z error: Operator '?' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:705:64:
2024-05-01T17:07:40.061217614Z 703 | timesheet.entries.forEach((timeEntry) => {
2024-05-01T17:07:40.061221014Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061224414Z > 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061228515Z | ^
2024-05-01T17:07:40.061232015Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061235515Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061239015Z 708 | });
2024-05-01T17:07:40.061242215Z
2024-05-01T17:07:40.061245515Z
2024-05-01T17:07:40.061248615Z error: Expected '===' and instead saw '==' (eqeqeq) at src/components/timeMachine/timesheets/AddTimeRecord.vue:706:64:
2024-05-01T17:07:40.061252015Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061255515Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061258915Z > 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061262415Z | ^
2024-05-01T17:07:40.061265815Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061273915Z 708 | });
2024-05-01T17:07:40.061279915Z 709 | });
2024-05-01T17:07:40.061285615Z
2024-05-01T17:07:40.061291315Z
2024-05-01T17:07:40.061297615Z error: Operator '==' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:706:64:
2024-05-01T17:07:40.061301515Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061304915Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061308415Z > 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061311915Z | ^
2024-05-01T17:07:40.061315315Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061318715Z 708 | });
2024-05-01T17:07:40.061322015Z 709 | });
2024-05-01T17:07:40.061325215Z
2024-05-01T17:07:40.061328315Z
2024-05-01T17:07:40.061331515Z error: Strings must use singlequote (quotes) at src/components/timeMachine/timesheets/AddTimeRecord.vue:706:66:
2024-05-01T17:07:40.061334915Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061338415Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061341815Z > 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061345316Z | ^
2024-05-01T17:07:40.061357716Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061363416Z 708 | });
2024-05-01T17:07:40.061369116Z 709 | });
2024-05-01T17:07:40.061375116Z
2024-05-01T17:07:40.061380816Z
2024-05-01T17:07:40.061384316Z error: Operator '?' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:706:68:
2024-05-01T17:07:40.061387816Z 704 | timeEntry.expenseAmount = timeEntry.expenseAmount==""?0:timeEntry.expenseAmount;
2024-05-01T17:07:40.061391216Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061394616Z > 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061398116Z | ^
2024-05-01T17:07:40.061401416Z 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061409516Z 708 | });
2024-05-01T17:07:40.061413116Z 709 | });
2024-05-01T17:07:40.061416416Z
2024-05-01T17:07:40.061419516Z
2024-05-01T17:07:40.061422716Z error: Expected '===' and instead saw '==' (eqeqeq) at src/components/timeMachine/timesheets/AddTimeRecord.vue:707:58:
2024-05-01T17:07:40.061426116Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061429616Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061433016Z > 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061436516Z | ^
2024-05-01T17:07:40.061439916Z 708 | });
2024-05-01T17:07:40.061444516Z 709 | });
2024-05-01T17:07:40.061450116Z 710 | this.$refs.spinner.open();
2024-05-01T17:07:40.061455816Z
2024-05-01T17:07:40.061461717Z
2024-05-01T17:07:40.061466417Z error: Operator '==' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:707:58:
2024-05-01T17:07:40.061469917Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061473417Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061477017Z > 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061480517Z | ^
2024-05-01T17:07:40.061483817Z 708 | });
2024-05-01T17:07:40.061487017Z 709 | });
2024-05-01T17:07:40.061490317Z 710 | this.$refs.spinner.open();
2024-05-01T17:07:40.061493617Z
2024-05-01T17:07:40.061496717Z
2024-05-01T17:07:40.061499917Z error: Strings must use singlequote (quotes) at src/components/timeMachine/timesheets/AddTimeRecord.vue:707:60:
2024-05-01T17:07:40.061504117Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061507717Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061511217Z > 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061514617Z | ^
2024-05-01T17:07:40.061518017Z 708 | });
2024-05-01T17:07:40.061521317Z 709 | });
2024-05-01T17:07:40.061524517Z 710 | this.$refs.spinner.open();
2024-05-01T17:07:40.061536017Z
2024-05-01T17:07:40.061542817Z
2024-05-01T17:07:40.061550217Z error: Operator '?' must be spaced (space-infix-ops) at src/components/timeMachine/timesheets/AddTimeRecord.vue:707:62:
2024-05-01T17:07:40.061553817Z 705 | timeEntry.hoursBillable = timeEntry.hoursBillable==""?0:timeEntry.hoursBillable;
2024-05-01T17:07:40.061557317Z 706 | timeEntry.hoursUnBillable = timeEntry.hoursUnBillable==""?0:timeEntry.hoursUnBillable;
2024-05-01T17:07:40.061560917Z > 707 | timeEntry.revenueHours = timeEntry.revenueHours==""?0:timeEntry.revenueHours;
2024-05-01T17:07:40.061564417Z | ^
2024-05-01T17:07:40.061567817Z 708 | });
2024-05-01T17:07:40.061571117Z 709 | });
2024-05-01T17:07:40.061574518Z 710 | this.$refs.spinner.open();
2024-05-01T17:07:40.061577918Z
2024-05-01T17:07:40.061581118Z
2024-05-01T17:07:40.061584318Z error: The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype (guard-for-in) at src/components/timeMachine/timesheets/AddTimeRecord.vue:821:9:
2024-05-01T17:07:40.061588018Z 819 | for (let i = 0; i < array.length; i++) {
2024-05-01T17:07:40.061591418Z 820 | let line = '';
2024-05-01T17:07:40.061594718Z > 821 | for (const index in array[i]) {
2024-05-01T17:07:40.061598118Z | ^
2024-05-01T17:07:40.061601418Z 822 | if (line != '') line += ',';
2024-05-01T17:07:40.061604818Z 823 | line += array[i][index];
2024-05-01T17:07:40.061608118Z 824 | }
2024-05-01T17:07:40.061613118Z
2024-05-01T17:07:40.061618718Z
2024-05-01T17:07:40.061624718Z error: for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array (no-restricted-syntax) at src/components/timeMachine/timesheets/AddTimeRecord.vue:821:9:
2024-05-01T17:07:40.061631818Z 819 | for (let i = 0; i < array.length; i++) {
2024-05-01T17:07:40.061636018Z 820 | let line = '';
2024-05-01T17:07:40.061639418Z > 821 | for (const index in array[i]) {
2024-05-01T17:07:40.061642818Z | ^
2024-05-01T17:07:40.061646018Z 822 | if (line != '') line += ',';
2024-05-01T17:07:40.061649318Z 823 | line += array[i][index];
2024-05-01T17:07:40.061652718Z 824 | }
2024-05-01T17:07:40.061656118Z
2024-05-01T17:07:40.061659218Z
2024-05-01T17:07:40.061662418Z error: Expected '!==' and instead saw '!=' (eqeqeq) at src/components/timeMachine/timesheets/AddTimeRecord.vue:822:20:
2024-05-01T17:07:40.061666618Z 820 | let line = '';
2024-05-01T17:07:40.061674918Z 821 | for (const index in array[i]) {
2024-05-01T17:07:40.061678518Z > 822 | if (line != '') line += ',';
2024-05-01T17:07:40.061681818Z | ^
2024-05-01T17:07:40.061685218Z 823 | line += array[i][index];
2024-05-01T17:07:40.061688419Z 824 | }
2024-05-01T17:07:40.061691819Z 825 | str += ${line}\r\n
;
2024-05-01T17:07:40.061697419Z
2024-05-01T17:07:40.061703019Z
2024-05-01T17:07:40.061708719Z error: Missing trailing comma (comma-dangle) at src/components/timeMachine/timesheets/AddTimeRecord.vue:959:6:
2024-05-01T17:07:40.061714919Z 957 |
2024-05-01T17:07:40.061718319Z 958 | return timesheetBilledAmount;
2024-05-01T17:07:40.061721819Z > 959 | }
2024-05-01T17:07:40.061725119Z | ^
2024-05-01T17:07:40.061728319Z 960 | },
2024-05-01T17:07:40.061731619Z 961 | };
2024-05-01T17:07:40.061734919Z 962 |
2024-05-01T17:07:40.061738319Z
2024-05-01T17:07:40.061741519Z
2024-05-01T17:07:40.061744619Z 29 errors found.
2024-05-01T17:07:40.061748019Z 22 errors potentially fixable with the --fix
option.
2024-05-01T17:07:40.061751319Z
2024-05-01T17:07:40.061754519Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.061757819Z error: Trailing spaces not allowed (no-trailing-spaces) at src/components/timeMachine/timesheets/BatchTimeEntry.vue:209:31:
2024-05-01T17:07:40.061761319Z 207 |
2024-05-01T17:07:40.061764919Z 208 |
--fix
option.
2024-05-01T17:07:40.062551826Z
2024-05-01T17:07:40.062556726Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.062562326Z error: Unexpected use of 'isNaN' (no-restricted-globals) at src/components/timeMachine/admin/HourlyRates.vue:160:21:
2024-05-01T17:07:40.062567526Z 158 | async save(contact) {
2024-05-01T17:07:40.062572726Z 159 | let hourlyRate = parseInt(contact.hourlyRate, 10);
2024-05-01T17:07:40.062577726Z > 160 | hourlyRate = !isNaN(hourlyRate) ? hourlyRate : null;
2024-05-01T17:07:40.062583226Z | ^
2024-05-01T17:07:40.062588226Z 161 | await this.$store.dispatch('updateContactPartial', {
2024-05-01T17:07:40.062593526Z 162 | id: contact.id,
2024-05-01T17:07:40.062598826Z 163 | hourlyRate,
2024-05-01T17:07:40.062603826Z
2024-05-01T17:07:40.062608727Z
2024-05-01T17:07:40.062613427Z 1 error found.
2024-05-01T17:07:40.062626827Z
2024-05-01T17:07:40.062631827Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.062637227Z error: Unexpected use of 'isNaN' (no-restricted-globals) at src/components/timeMachine/admin/RevenueRates.vue:93:22:
2024-05-01T17:07:40.062644527Z 91 | async save(contact) {
2024-05-01T17:07:40.062660127Z 92 | let revenueRate = parseInt(contact.revenueRate, 10);
2024-05-01T17:07:40.062666427Z > 93 | revenueRate = !isNaN(revenueRate) ? revenueRate : null;
2024-05-01T17:07:40.062677927Z | ^
2024-05-01T17:07:40.062683127Z 94 | await this.$store.dispatch('updateContactPartial', {
2024-05-01T17:07:40.062688827Z 95 | id: contact.id,
2024-05-01T17:07:40.062694027Z 96 | revenueRate,
2024-05-01T17:07:40.062699127Z
2024-05-01T17:07:40.062703827Z
2024-05-01T17:07:40.062708627Z 1 error found.
2024-05-01T17:07:40.062713327Z
2024-05-01T17:07:40.062718427Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.062723828Z warning: Unexpected console statement (no-console) at src/App.vue:160:7:
2024-05-01T17:07:40.062729428Z 158 | },
2024-05-01T17:07:40.062735128Z 159 | fetchToken(newValue, oldValue) {
2024-05-01T17:07:40.062740928Z > 160 | console.log('fetchToken', { newValue, oldValue });
2024-05-01T17:07:40.062746328Z | ^
2024-05-01T17:07:40.062751228Z 161 | if (newValue !== oldValue) {
2024-05-01T17:07:40.062756728Z 162 | this.$store.dispatch('verifyTokenServer')
2024-05-01T17:07:40.062762728Z 163 | .then(() => {
2024-05-01T17:07:40.062768928Z
2024-05-01T17:07:40.062774928Z
2024-05-01T17:07:40.062779928Z 1 warning found.
2024-05-01T17:07:40.062784828Z
2024-05-01T17:07:40.062789428Z Module Warning (from ./node_modules/eslint-loader/index.js):
2024-05-01T17:07:40.062794228Z warning: Unexpected console statement (no-console) at src/components/error/Unauthorized.vue:53:7:
2024-05-01T17:07:40.062800028Z 51 | clearInterval(timer);
2024-05-01T17:07:40.062805928Z 52 | // this.$router.push('/logout');
2024-05-01T17:07:40.062811628Z > 53 | console.log('LOGOUT TODO');
2024-05-01T17:07:40.062817028Z | ^
2024-05-01T17:07:40.062822628Z 54 | }, 5000);
2024-05-01T17:07:40.062828828Z 55 | },
2024-05-01T17:07:40.062834228Z 56 | };
2024-05-01T17:07:40.062839929Z
2024-05-01T17:07:40.062845529Z
2024-05-01T17:07:40.062851029Z 1 warning found.
2024-05-01T17:07:40.062856529Z
2024-05-01T17:07:40.062861829Z You may use special comments to disable some warnings.
2024-05-01T17:07:40.062867529Z Use // eslint-disable-next-line to ignore the next line.
2024-05-01T17:07:40.062872629Z Use / eslint-disable */ to ignore all warnings in a file.
2024-05-01T17:07:40.062878029Z warning in ./src/config.js
2024-05-01T17:07:40.062893829Z
2024-05-01T17:07:40.062898829Z Module Warning (from ./node_modules/thread-loader/dist/cjs.js):
2024-05-01T17:07:40.062904429Z
2024-05-01T17:07:40.062910029Z /web/src/config.js
2024-05-01T17:07:40.062916029Z 3:1 error Expected indentation of 2 spaces but found 0 indent
2024-05-01T17:07:40.062922029Z 4:1 error Expected indentation of 2 spaces but found 0 indent
2024-05-01T17:07:40.062927429Z
2024-05-01T17:07:40.062932429Z ✖ 2 problems (2 errors, 0 warnings)
2024-05-01T17:07:40.062938329Z 2 errors and 0 warnings potentially fixable with the --fix
option.
2024-05-01T17:07:40.062943729Z
2024-05-01T17:07:40.062948729Z
2024-05-01T17:07:40.062953829Z @ ./src/i18n/index.js 2:0-30 14:34-40
2024-05-01T17:07:40.062959230Z @ ./src/main.js
2024-05-01T17:07:40.062964530Z @ multi ./src/main.js
2024-05-01T17:07:40.062969730Z
2024-05-01T17:07:40.062974730Z warning in ./src/main.js
2024-05-01T17:07:40.062980030Z
2024-05-01T17:07:40.062984930Z Module Warning (from ./node_modules/thread-loader/dist/cjs.js):
2024-05-01T17:07:40.062990130Z
2024-05-01T17:07:40.062995230Z /web/src/main.js
2024-05-01T17:07:40.063000930Z 1:17 error Strings must use singlequote quotes
2024-05-01T17:07:40.063006530Z 2:28 error Strings must use singlequote quotes
2024-05-01T17:07:40.063013530Z 4:8 error Strings must use singlequote quotes
2024-05-01T17:07:40.063019730Z 5:8 error Strings must use singlequote quotes
2024-05-01T17:07:40.063026130Z 6:8 error Strings must use singlequote quotes
2024-05-01T17:07:40.063032930Z 7:8 error Strings must use singlequote quotes
2024-05-01T17:07:40.063038730Z 8:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063044130Z 9:8 error Strings must use singlequote quotes
2024-05-01T17:07:40.063049830Z 11:1 error ./App.vue
import should occur after import of v-calendar
import/order
2024-05-01T17:07:40.063055330Z 11:17 error Strings must use singlequote quotes
2024-05-01T17:07:40.063061230Z 12:1 error ./router
import should occur after import of v-calendar
import/order
2024-05-01T17:07:40.063066930Z 12:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063081831Z 14:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063088931Z 15:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063094531Z 17:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063098331Z 18:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063101831Z 19:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063105231Z 22:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063108731Z 22:24 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063112131Z 27:12 error Strings must use singlequote quotes
2024-05-01T17:07:40.063116631Z 27:26 error Expected to return a value at the end of function consistent-return
2024-05-01T17:07:40.063120131Z 27:26 warning Unexpected unnamed function func-names
2024-05-01T17:07:40.063123831Z 27:26 error Unexpected function expression prefer-arrow-callback
2024-05-01T17:07:40.063129531Z 27:34 error Missing space before function parentheses space-before-function-paren
2024-05-01T17:07:40.063135031Z 29:41 error Strings must use singlequote quotes
2024-05-01T17:07:40.063140731Z 33:12 error Strings must use singlequote quotes
2024-05-01T17:07:40.063146431Z 33:26 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063152131Z 35:61 error Strings must use singlequote quotes
2024-05-01T17:07:40.063158231Z 37:5 error Arrow function expected no return value consistent-return
2024-05-01T17:07:40.063164231Z 39:51 error Strings must use singlequote quotes
2024-05-01T17:07:40.063170131Z 42:3 error Arrow function expected no return value consistent-return
2024-05-01T17:07:40.063175931Z 45:15 error Strings must use singlequote quotes
2024-05-01T17:07:40.063181331Z 46:15 error Strings must use singlequote quotes
2024-05-01T17:07:40.063187132Z 48:15 error Strings must use singlequote quotes
2024-05-01T17:07:40.063192832Z 49:3 error Expected method shorthand object-shorthand
2024-05-01T17:07:40.063209332Z 49:9 warning Unexpected unnamed method 'bind' func-names
2024-05-01T17:07:40.063213632Z 49:17 error Missing space before function parentheses space-before-function-paren
2024-05-01T17:07:40.063217132Z 51:7 error Strings must use singlequote quotes
2024-05-01T17:07:40.063221832Z 52:7 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063225432Z 55:11 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063228932Z 57:4 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063232432Z
2024-05-01T17:07:40.063235732Z ✖ 41 problems (39 errors, 2 warnings)
2024-05-01T17:07:40.063239432Z 36 errors and 0 warnings potentially fixable with the --fix
option.
2024-05-01T17:07:40.063242832Z
2024-05-01T17:07:40.063246032Z
2024-05-01T17:07:40.063249332Z @ multi ./src/main.js
2024-05-01T17:07:40.063252632Z
2024-05-01T17:07:40.063255832Z warning in ./src/router.js
2024-05-01T17:07:40.063259132Z
2024-05-01T17:07:40.063262432Z Module Warning (from ./node_modules/thread-loader/dist/cjs.js):
2024-05-01T17:07:40.063265832Z
2024-05-01T17:07:40.063269032Z /web/src/router.js
2024-05-01T17:07:40.063272332Z 222:3 error Expected exception block, space or tab after '//' in comment spaced-comment
2024-05-01T17:07:40.063275832Z
2024-05-01T17:07:40.063279032Z ✖ 1 problem (1 error, 0 warnings)
2024-05-01T17:07:40.063282432Z 1 error and 0 warnings potentially fixable with the --fix
option.
2024-05-01T17:07:40.063285832Z
2024-05-01T17:07:40.063289032Z
2024-05-01T17:07:40.063292232Z @ ./src/main.js 17:0-30 61:10-16
2024-05-01T17:07:40.063295632Z @ multi ./src/main.js
2024-05-01T17:07:40.063298832Z
2024-05-01T17:07:40.063302133Z warning in ./src/store/index.js
2024-05-01T17:07:40.063305533Z
2024-05-01T17:07:40.063308733Z Module Warning (from ./node_modules/thread-loader/dist/cjs.js):
2024-05-01T17:07:40.063312033Z
2024-05-01T17:07:40.063315233Z /web/src/store/index.js
2024-05-01T17:07:40.063318533Z 4:17 error Strings must use singlequote quotes
2024-05-01T17:07:40.063322033Z 5:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063329633Z 7:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063333433Z 10:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063336833Z 12:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063340233Z 14:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063343733Z 17:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063347233Z 18:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063350633Z 21:30 error Strings must use singlequote quotes
2024-05-01T17:07:40.063366433Z 23:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063369933Z 24:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063373433Z 30:1 error Expected indentation of 2 spaces but found 0 indent
2024-05-01T17:07:40.063376933Z 30:35 error Strings must use singlequote quotes
2024-05-01T17:07:40.063380333Z 31:1 error Expected indentation of 2 spaces but found 0 indent
2024-05-01T17:07:40.063383833Z 33:1 warning Unexpected console statement no-console
2024-05-01T17:07:40.063387333Z 33:13 error Strings must use singlequote quotes
2024-05-01T17:07:40.063390733Z 37:25 error Strings must use singlequote quotes
2024-05-01T17:07:40.063394133Z 37:54 error Strings must use singlequote quotes
2024-05-01T17:07:40.063397533Z 40:13 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063401333Z 77:26 error Missing space before value for key 'timesheetProjectsOld' key-spacing
2024-05-01T17:07:40.063404833Z 107:20 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063408233Z 112:32 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063411633Z 121:28 error Strings must use singlequote quotes
2024-05-01T17:07:40.063415134Z 122:28 error Strings must use singlequote quotes
2024-05-01T17:07:40.063418634Z 133:13 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063425834Z 140:30 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063429334Z 145:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063433334Z 145:47 error A space is required after '{' object-curly-spacing
2024-05-01T17:07:40.063436934Z 145:59 error A space is required before '}' object-curly-spacing
2024-05-01T17:07:40.063440334Z 145:61 error Missing semicolon semi
2024-05-01T17:07:40.063443734Z 242:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063447234Z 245:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063450634Z 248:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063454034Z 254:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063457534Z 257:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063460934Z 260:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063464334Z 268:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063467834Z 271:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063471234Z 271:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063474634Z 277:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063478134Z 277:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063481534Z 280:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063484934Z 284:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063488334Z 296:25 error 'state' is defined but never used no-unused-vars
2024-05-01T17:07:40.063491834Z 296:32 error 'data' is defined but never used no-unused-vars
2024-05-01T17:07:40.063495734Z 314:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063499134Z 317:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063506234Z 320:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063509734Z 320:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063513234Z 326:28 error Expected exception block, space or tab after '//' in comment spaced-comment
2024-05-01T17:07:40.063516634Z 328:22 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063522034Z 352:31 error Expected exception block, space or tab after '//' in comment spaced-comment
2024-05-01T17:07:40.063527834Z 354:22 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063534035Z 371:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063539735Z 375:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063546435Z 378:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063550135Z 381:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063553635Z 397:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063557035Z 397:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063560435Z 412:24 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063563935Z 468:34 error There should be no line break before or after '=' operator-linebreak
2024-05-01T17:07:40.063567335Z 473:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063570735Z 476:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063574935Z 479:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063578435Z 482:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063581835Z 485:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063585435Z 488:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063588835Z 491:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063592235Z 494:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063609435Z 497:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063613035Z 500:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063616535Z 503:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063619935Z 506:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.063623335Z 506:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.063626735Z 507:6 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063630135Z 517:36 error Strings must use singlequote quotes
2024-05-01T17:07:40.063633535Z 518:37 error Strings must use singlequote quotes
2024-05-01T17:07:40.063636935Z 518:45 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063640335Z 520:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063643735Z 524:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063647136Z 526:30 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063651136Z 535:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063654636Z 538:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063658036Z 547:45 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063661536Z 549:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063664936Z 554:49 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063668336Z 556:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063671736Z 560:52 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063675136Z 562:9 warning Unexpected console statement no-console
2024-05-01T17:07:40.063678636Z 562:21 error Strings must use singlequote quotes
2024-05-01T17:07:40.063682036Z 563:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063689436Z 570:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063693136Z 572:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063696436Z 581:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063699936Z 582:11 warning Unexpected console statement no-console
2024-05-01T17:07:40.063703336Z 582:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063706736Z 589:49 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063710136Z 591:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063714136Z 595:59 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063717636Z 597:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063721136Z 604:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063724536Z 606:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063727936Z 617:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063731336Z 619:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063734736Z 629:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063738136Z 631:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063741536Z 642:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063744936Z 644:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063748436Z 654:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063751836Z 656:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063755236Z 666:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063758636Z 668:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063762037Z 678:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063769037Z 680:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063772637Z 687:13 error 'body' is assigned a value but never used no-unused-vars
2024-05-01T17:07:40.063776037Z 690:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063780337Z 702:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063783837Z 704:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063787237Z 714:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063790737Z 716:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063794037Z 723:46 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063797437Z 725:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063800937Z 729:45 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063804337Z 731:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063807737Z 737:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063811137Z 739:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063814537Z 741:20 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063817937Z 749:45 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063821437Z 751:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063824837Z 755:51 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063828237Z 757:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063837637Z 761:60 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063841237Z 763:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063844637Z 767:59 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063848437Z 769:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063852037Z 774:43 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063859237Z 776:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063862837Z 780:53 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063866237Z 782:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063869637Z 787:50 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063873137Z 789:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063876538Z 794:61 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063879938Z 796:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063883338Z 800:56 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063886738Z 802:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063890138Z 808:51 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063893538Z 810:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063897038Z 815:62 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063900438Z 817:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063903838Z 825:57 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063907238Z 827:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063910738Z 832:47 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063914938Z 834:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063918438Z 839:48 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063921838Z 841:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063925338Z 846:59 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063928738Z 848:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063932138Z 852:54 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063939138Z 854:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063942738Z 857:20 error 'req' is defined but never used no-unused-vars
2024-05-01T17:07:40.063946138Z 858:40 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063949538Z 861:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063952938Z 868:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063956338Z 870:11 warning Unexpected console statement no-console
2024-05-01T17:07:40.063959838Z 870:23 error Strings must use singlequote quotes
2024-05-01T17:07:40.063963138Z 871:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.063966538Z 880:43 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063969938Z 882:25 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063973338Z 888:56 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.063976738Z 889:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063980738Z 891:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063984238Z 898:53 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063987638Z 900:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.063991039Z 904:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.063994439Z 910:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.063997839Z 912:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064001239Z 921:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064004639Z 923:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064008039Z 931:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.064011439Z 934:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064018339Z 936:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064021939Z 943:7 warning Unexpected console statement no-console
2024-05-01T17:07:40.064025339Z 943:19 error Strings must use singlequote quotes
2024-05-01T17:07:40.064028739Z 946:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064032139Z 948:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064035539Z 957:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064038939Z 967:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064042739Z 978:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064046239Z 988:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064049639Z 997:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064053039Z 1006:17 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064056439Z 1020:17 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064059839Z 1033:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064063239Z 1041:69 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064066739Z 1043:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064070139Z 1048:44 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064073539Z 1051:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064076939Z 1055:53 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064080339Z 1058:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064083739Z 1063:54 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064087139Z 1066:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064090539Z 1071:31 error Identifier 'is_archived' is not in camel case camelcase
2024-05-01T17:07:40.064099739Z 1072:13 error Identifier 'is_archived' is not in camel case camelcase
2024-05-01T17:07:40.064103439Z 1072:37 error Identifier 'is_archived' is not in camel case camelcase
2024-05-01T17:07:40.064106840Z 1073:86 error Identifier 'is_archived' is not in camel case camelcase
2024-05-01T17:07:40.064110740Z 1076:84 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064114340Z 1078:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064117740Z 1083:54 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064121240Z 1085:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064124640Z 1090:51 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064128040Z 1092:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064131340Z 1099:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064134840Z 1101:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064138240Z 1108:57 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064141640Z 1110:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064145040Z 1114:71 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064148540Z 1116:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064151840Z 1120:70 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064155340Z 1122:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064158640Z 1127:27 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.064162140Z 1131:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064165540Z 1133:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064168940Z 1142:27 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.064172740Z 1146:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064179740Z 1148:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064183240Z 1157:86 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064186640Z 1159:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064190040Z 1166:62 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064193540Z 1168:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064196940Z 1173:74 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064200340Z 1175:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064203740Z 1178:33 error 'req' is defined but never used no-unused-vars
2024-05-01T17:07:40.064207140Z 1179:55 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064210540Z 1180:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064213940Z 1187:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064217340Z 1189:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064220841Z 1199:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064224241Z 1210:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064229041Z 1221:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064234741Z 1223:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064240741Z 1233:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064325941Z 1235:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064340842Z 1244:72 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064345242Z 1246:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064348742Z 1251:67 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064352242Z 1253:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064362742Z 1260:66 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064366542Z 1262:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064369942Z 1267:54 error Strings must use singlequote quotes
2024-05-01T17:07:40.064373342Z 1268:52 error Strings must use singlequote quotes
2024-05-01T17:07:40.064376842Z 1274:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064380242Z 1279:54 error Strings must use singlequote quotes
2024-05-01T17:07:40.064383642Z 1281:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064387142Z 1286:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064390642Z 1291:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064394042Z 1296:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064397442Z 1301:18 error Strings must use singlequote quotes
2024-05-01T17:07:40.064400842Z 1308:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064404542Z 1320:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064408642Z 1322:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064412242Z 1333:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064415742Z 1335:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064419142Z 1345:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064422642Z 1347:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064426042Z 1357:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064429442Z 1359:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064432942Z 1370:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064436442Z 1372:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064439842Z 1373:11 error Expected exception block, space or tab after '//' in comment spaced-comment
2024-05-01T17:07:40.064446842Z 1384:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064450443Z 1386:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064453943Z 1387:11 error Expected exception block, space or tab after '//' in comment spaced-comment
2024-05-01T17:07:40.064457343Z 1398:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064460743Z 1400:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064464243Z 1412:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064467743Z 1414:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064471643Z 1424:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064475243Z 1426:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064478643Z 1435:15 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064482143Z 1437:22 error Strings must use singlequote quotes
2024-05-01T17:07:40.064485643Z 1449:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064489143Z 1460:53 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064492543Z 1462:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064495943Z 1469:70 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064499543Z 1471:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064502943Z 1478:64 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064506343Z 1480:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064509843Z 1484:65 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064513243Z 1486:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064516743Z 1490:59 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064520143Z 1492:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064527443Z 1496:71 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064531043Z 1498:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064534543Z 1502:57 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064539043Z 1504:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064542543Z 1511:77 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064546043Z 1513:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064549543Z 1519:78 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064552943Z 1521:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064556343Z 1525:73 error Expected parentheses around arrow function argument having a body with curly braces arrow-parens
2024-05-01T17:07:40.064559843Z 1527:20 error Strings must use singlequote quotes
2024-05-01T17:07:40.064563243Z 1529:6 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.064566744Z 1533:7 error Expected no linebreak before this expression implicit-arrow-linebreak
2024-05-01T17:07:40.064570244Z 1533:81 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.064573744Z 1534:4 error Missing trailing comma comma-dangle
2024-05-01T17:07:40.064577144Z
2024-05-01T17:07:40.064580344Z ✖ 305 problems (293 errors, 12 warnings)
2024-05-01T17:07:40.064584044Z 284 errors and 0 warnings potentially fixable with the --fix
option.
2024-05-01T17:07:40.064587444Z
2024-05-01T17:07:40.064590644Z
2024-05-01T17:07:40.064593744Z @ ./src/main.js 19:0-28 60:9-14
2024-05-01T17:07:40.064597044Z @ multi ./src/main.js
2024-05-01T17:07:40.064600344Z
2024-05-01T17:07:40.064603544Z warning
When just build/deploying docker-compose I get this and a 502 Browserslist: caniuse-lite is outdated. Please run the following command:
npm update
Then tried to exec -it into the container and I couldnt so I added npm update to the web dockerfile. What should I do from here?