File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1- // http://eslint.org/docs/user-guide/configuring
2-
31module . exports = {
42 root : true ,
53 parserOptions : {
64 parser : 'babel-eslint' ,
75 ecmaVersion : 2017 ,
8- sourceType : " module"
6+ sourceType : ' module'
97 } ,
108 env : {
119 browser : true ,
1210 jest : true
1311 } ,
14- // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
1512 extends : [
1613 'standard' ,
1714 'plugin:vue/recommended' ,
1815 'eslint:recommended' ,
1916 'prettier/vue' ,
2017 'plugin:prettier/recommended'
2118 ] ,
22- // required to lint *.vue files
2319 plugins : [
2420 'vue'
2521 ] ,
26- // add your custom rules here
2722 rules : {
28- // allow paren-less arrow functions
23+ 'no-console' : 'off' ,
2924 'arrow-parens' : 0 ,
30- // allow async-await
3125 'generator-star-spacing' : 0 ,
3226 'vue/html-closing-bracket-newline' : 0 ,
3327 'vue/singleline-html-element-content-newline' : 0 ,
You can’t perform that action at this time.
0 commit comments