Skip to content

Commit

Permalink
Avoid redundant global self-require of the plugin (#1317)
Browse files Browse the repository at this point in the history
* Avoid redundant global require

* Bring back alias to self
  • Loading branch information
constgen committed Oct 5, 2020
1 parent 52ba4fe commit f87f76c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rules/no-unregistered-components.js
Expand Up @@ -8,8 +8,8 @@
// Requirements
// ------------------------------------------------------------------------------

const utils = require('eslint-plugin-vue/lib/utils')
const casing = require('eslint-plugin-vue/lib/utils/casing')
const utils = require('../utils')
const casing = require('../utils/casing')

// ------------------------------------------------------------------------------
// Rule helpers
Expand Down

0 comments on commit f87f76c

Please sign in to comment.