Skip to content

Commit 6397e24

Browse files
committed
formatting
1 parent ffb0b1c commit 6397e24

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,15 @@
7878
"plugin:vue/essential",
7979
"eslint:recommended"
8080
],
81-
"rules": {},
81+
"rules": {
82+
"quotes": [
83+
2,
84+
"single",
85+
{
86+
"avoidEscape": true
87+
}
88+
]
89+
},
8290
"parserOptions": {
8391
"parser": "babel-eslint"
8492
}

src/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ if (typeof window !== 'undefined' && window.Vue) {
1313
NewVue.prototype.$showPanel = vueSlideoutPanelService.showPanel;
1414
NewVue.prototype.$showPanelStack = vueSlideoutPanelService.showPanelStack;
1515
NewVue.prototype.$hideAllPanels = vueSlideoutPanelService.hideAllPanels;
16-
NewVue.prototype.$setPanelDefaults = vueSlideoutPanelService.setPanelDefaults;
16+
NewVue.prototype.$setPanelDefaults =
17+
vueSlideoutPanelService.setPanelDefaults;
1718
}
1819
});
1920

@@ -26,7 +27,8 @@ export default {
2627
NewVue.prototype.$showPanel = vueSlideoutPanelService.showPanel;
2728
NewVue.prototype.$showPanelStack = vueSlideoutPanelService.showPanelStack;
2829
NewVue.prototype.$hideAllPanels = vueSlideoutPanelService.hideAllPanels;
29-
NewVue.prototype.$setPanelDefaults = vueSlideoutPanelService.setPanelDefaults;
30+
NewVue.prototype.$setPanelDefaults =
31+
vueSlideoutPanelService.setPanelDefaults;
3032
},
3133
VueSlideoutPanel,
3234
vueSlideoutPanelService

0 commit comments

Comments
 (0)