Skip to content

Commit f87f76c

Browse files
authored
Avoid redundant global self-require of the plugin (#1317)
* Avoid redundant global require * Bring back alias to self
1 parent 52ba4fe commit f87f76c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rules/no-unregistered-components.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Requirements
99
// ------------------------------------------------------------------------------
1010

11-
const utils = require('eslint-plugin-vue/lib/utils')
12-
const casing = require('eslint-plugin-vue/lib/utils/casing')
11+
const utils = require('../utils')
12+
const casing = require('../utils/casing')
1313

1414
// ------------------------------------------------------------------------------
1515
// Rule helpers

0 commit comments

Comments
 (0)