File tree Expand file tree Collapse file tree 4 files changed +32
-9
lines changed
Expand file tree Collapse file tree 4 files changed +32
-9
lines changed Original file line number Diff line number Diff line change 1+ # editorconfig.org
2+ root = true
3+
4+ [* ]
5+ indent_style = space
6+ indent_size = 2
7+ end_of_line = lf
8+ charset = utf-8
9+ trim_trailing_whitespace = true
10+ insert_final_newline = true
11+
12+ [* .md ]
13+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 11node_modules
2- .dist
3- build
42dist
Original file line number Diff line number Diff line change 11module . exports = {
22 root : true ,
33 env : {
4- node : true
4+ browser : true ,
5+ es6 : true ,
6+ node : true ,
57 } ,
6- extends : [ "plugin:vue/essential" , "@vue/prettier" ] ,
8+ parserOptions : {
9+ parser : 'babel-eslint' ,
10+ } ,
11+ extends : [
12+ 'plugin:vue/recommended' ,
13+ 'plugin:prettier/recommended' ,
14+ 'prettier' ,
15+ 'prettier/vue' ,
16+ ] ,
17+ // required to lint *.vue files
18+ plugins : [ 'vue' , 'prettier' ] ,
19+ // add your custom rules here
720 rules : {
8- " no-console" : process . env . NODE_ENV === " production" ? " error" : " off" ,
9- " no-debugger" : process . env . NODE_ENV === " production" ? " error" : " off"
21+ ' no-console' : process . env . NODE_ENV === ' production' ? ' error' : ' off' ,
22+ ' no-debugger' : process . env . NODE_ENV === ' production' ? ' error' : ' off' ,
1023 } ,
11- parserOptions : {
12- parser : "babel-eslint"
13- }
1424} ;
Original file line number Diff line number Diff line change 1+ # Auto detect text files and perform LF normalization
2+ * text =auto
You can’t perform that action at this time.
0 commit comments