File tree Expand file tree Collapse file tree 4 files changed +745
-0
lines changed Expand file tree Collapse file tree 4 files changed +745
-0
lines changed Original file line number Diff line number Diff line change
1
+ .git
2
+ /tmp
3
+ /vendor
4
+ node_modules
Original file line number Diff line number Diff line change
1
+ # editorconfig.org
2
+
3
+ # This is the project's root directory
4
+ root = true
5
+
6
+ [* ]
7
+ # Use spaces for indentation
8
+ indent_style = space
9
+ # Each indent should contain 2 spaces
10
+ indent_size = 2
11
+ # Use Unix line endings
12
+ end_of_line = lf
13
+ # The files are utf-8 encoded
14
+ charset = utf-8
15
+ # No whitespace at the end of line
16
+ trim_trailing_whitespace = true
17
+ # A file must end with an empty line - this is good for version control systems
18
+ insert_final_newline = true
19
+ # A line should not have more than this amount of chars (not supported by all plugins)
20
+ max_line_length = 100
21
+
22
+ [{Makefile,** .mk} ]
23
+ # Use tabs for indentation (Makefiles require tabs)
24
+ indent_style = tab
25
+
26
+ [VERSION ]
27
+ insert_final_newline = false
You can’t perform that action at this time.
0 commit comments