File tree 3 files changed +28
-1
lines changed
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ # EditorConfig helps developers define and maintain consistent
2
+ # coding styles between different editors and IDEs
3
+ # editorconfig.org
4
+
5
+ root = true
6
+
7
+ [* ]
8
+
9
+ # Change these settings to your own preference
10
+ indent_style = space
11
+ indent_size = 2
12
+
13
+ # We recommend you to keep these unchanged
14
+ end_of_line = lf
15
+ charset = utf-8
16
+ trim_trailing_whitespace = true
17
+ insert_final_newline = true
18
+
19
+ [* .{md,patch} ]
20
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 8
8
},
9
9
"keywords" : [],
10
10
"author" : " Uri Shaked" ,
11
- "license" : " ISC " ,
11
+ "license" : " MIT " ,
12
12
"description" : " " ,
13
13
"dependencies" : {
14
14
"node-fetch" : " ^3.1.0"
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ printWidth : 100 ,
3
+ singleQuote : true ,
4
+ tabWidth : 2 ,
5
+ trailingComma : 'all' ,
6
+ endOfLine : 'auto' ,
7
+ } ;
You can’t perform that action at this time.
0 commit comments