Skip to content

Commit a0d733a

Browse files
committedMay 30, 2018
feat(vue): use Vue plugin instead of the HTML one
1 parent 990399e commit a0d733a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎rules/vue.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// eslint-disable-next-line import/no-commonjs
2+
module.exports = {
3+
rules: {
4+
// Override rule when needed
5+
},
6+
};

‎vue.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// eslint-disable-next-line import/no-commonjs
22
module.exports = {
33
// later we add vue-specific prettier extends here
4-
extends: ['./base.js'],
5-
plugins: ['html'],
4+
extends: ['plugin:vue/strongly-recommended', './rules/vue.js', './base.js'],
5+
plugins: ['vue'],
66
};

0 commit comments

Comments
 (0)
Please sign in to comment.