Skip to content

Commit

Permalink
feat(vue): use Vue plugin instead of the HTML one
Browse files Browse the repository at this point in the history
  • Loading branch information
samouss committed May 30, 2018
1 parent 990399e commit a0d733a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions rules/vue.js
@@ -0,0 +1,6 @@
// eslint-disable-next-line import/no-commonjs
module.exports = {
rules: {
// Override rule when needed
},
};
4 changes: 2 additions & 2 deletions vue.js
@@ -1,6 +1,6 @@
// eslint-disable-next-line import/no-commonjs
module.exports = {
// later we add vue-specific prettier extends here
extends: ['./base.js'],
plugins: ['html'],
extends: ['plugin:vue/strongly-recommended', './rules/vue.js', './base.js'],
plugins: ['vue'],
};

0 comments on commit a0d733a

Please sign in to comment.