Skip to content

Commit 1437f8d

Browse files
committed
lint
1 parent aa50516 commit 1437f8d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

packages/create-instance/create-component-stubs.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
// @flow
22

33
import Vue from 'vue'
4-
import { throwError, camelize, capitalize, hyphenate, keys } from '../shared/util'
4+
import {
5+
throwError,
6+
camelize,
7+
capitalize,
8+
hyphenate,
9+
keys
10+
} from '../shared/util'
511
import {
612
componentNeedsCompiling,
713
templateContainsComponent,
@@ -87,9 +93,7 @@ function getScopedSlotRenderFunctions(ctx: any): Array<string> {
8793
ctx.$options.parent._vnode.data.scopedSlots
8894
) {
8995
const slotKeys: Array<string> = ctx.$options.parent._vnode.data.scopedSlots
90-
return keys(slotKeys).filter(
91-
x => x[0] !== '_' && !x.includes('$')
92-
)
96+
return keys(slotKeys).filter(x => x[0] !== '_' && !x.includes('$'))
9397
}
9498

9599
return []

0 commit comments

Comments
 (0)