Skip to content

Commit 206813b

Browse files
committed
fix standard rule upgrade
1 parent d833cba commit 206813b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "standard",
33
"rules": {
4-
"arrow-parens": [2, "as-needed"]
4+
"arrow-parens": [2, "as-needed"],
5+
"no-duplicate-imports": 0
56
}
67
}

src/global-api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import * as transition from './transition/index'
1313
import FragmentFactory from './fragment/factory'
1414
import internalDirectives from './directives/internal/index'
1515

16-
const {
16+
import {
1717
set,
1818
del,
1919
nextTick,
@@ -25,7 +25,7 @@ const {
2525
warn,
2626
isPlainObject,
2727
extend
28-
} = util
28+
} from './util/index'
2929

3030
export default function (Vue) {
3131
/**

0 commit comments

Comments
 (0)