mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
ESLint one-var, no-var rules (#3239)
* fixed issues for eslint one-var and no-var rules Co-authored-by: Joshi <simplyrender@gmail.com> Co-authored-by: Andrew Henry <akhenry@gmail.com>
This commit is contained in:
@ -143,12 +143,12 @@ export default {
|
||||
methods: {
|
||||
generateTable() {
|
||||
let m = moment.utc({
|
||||
year: this.picker.year,
|
||||
month: this.picker.month
|
||||
}).day(0),
|
||||
table = [],
|
||||
row,
|
||||
col;
|
||||
year: this.picker.year,
|
||||
month: this.picker.month
|
||||
}).day(0);
|
||||
let table = [];
|
||||
let row;
|
||||
let col;
|
||||
|
||||
for (row = 0; row < 6; row += 1) {
|
||||
table.push([]);
|
||||
|
Reference in New Issue
Block a user