Skip to content

Commit aa9013f

Browse files
committed
switch to essential ruleset.
recommended might be too much to start with
1 parent 983f6ec commit aa9013f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

template/.eslintrc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ module.exports = {
1111
},
1212
{{#if_eq lintConfig "standard"}}
1313
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
14-
extends: ['plugin:vue/recommended', 'standard'],
14+
extends: ['plugin:vue/essential', 'standard'],
1515
{{/if_eq}}
1616
{{#if_eq lintConfig "airbnb"}}
1717
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
18-
extends: ['plugin:vue/recommended', 'airbnb-base'],
18+
extends: ['plugin:vue/essential', 'airbnb-base'],
1919
{{/if_eq}}
2020
{{#if_eq lintConfig "none"}}
2121
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
22-
extends: ['plugin:vue/recommended'],
22+
extends: ['plugin:vue/essential'],
2323
{{/if_eq}}
2424
// required to lint *.vue files
2525
plugins: [

0 commit comments

Comments
 (0)