Skip to content

Commit cdefff4

Browse files
author
Pooya Parsa
committed
ESLint
1 parent c5333e6 commit cdefff4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const lib = path.resolve(base, 'lib');
1313
const dist = path.resolve(base, 'dist');
1414

1515
// Ensure dist directory exists
16-
if(!fs.existsSync(dist)){
17-
fs.mkdirSync(dist)
16+
if (!fs.existsSync(dist)) {
17+
fs.mkdirSync(dist);
1818
}
1919

2020
module.exports = {

examples/form-select/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ window.app = new Vue({
2121
value: 'd',
2222
disabled: true
2323
}]
24-
},
24+
}
2525
});
2626

lib/mixins/form-options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
return {
1111
value: option[this.valueField],
1212
text: option[this.textField]
13-
}
13+
};
1414
}
1515

1616
return {text: String(option), value: option || {}};

0 commit comments

Comments
 (0)