File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change 11module . exports = {
2+ root : true ,
23 env : {
3- browser : true ,
4- es2021 : true ,
54 node : true
65 } ,
76 extends : [
8- 'plugin:vue/vue3-essential' ,
9- '@vue/standard'
7+ 'plugin:vue/vue3-essential'
108 ] ,
119 parserOptions : {
12- ecmaVersion : 12 ,
13- sourceType : 'module' ,
1410 parser : 'babel-eslint'
1511 } ,
1612 plugins : [
1713 'vue'
1814 ] ,
1915 rules : {
2016 'brace-style' : [ 2 , 'stroustrup' , { allowSingleLine : true } ] ,
21- 'no-console' : process . env . NODE_ENV === 'production' ? 'warn' : 'off' ,
22- 'no-debugger' : process . env . NODE_ENV === 'production' ? 'warn' : 'off'
23- } ,
24-
25- root : true
17+ 'no-console' : import . meta. env . NODE_ENV === 'production' ? 'warn' : 'off' ,
18+ 'no-debugger' : import . meta. env . NODE_ENV === 'production' ? 'warn' : 'off'
19+ }
2620}
You can’t perform that action at this time.
0 commit comments