File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2
+ # For details: https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
3
+
4
+ # This file is for unifying the coding style for different editors and IDEs.
5
+ # More information at http://EditorConfig.org
6
+
7
+ root = true
8
+
9
+ [* ]
10
+ charset = utf-8
11
+ end_of_line = lf
12
+ indent_size = 4
13
+ indent_style = space
14
+ insert_final_newline = true
15
+ max_line_length = 80
16
+ trim_trailing_whitespace = true
17
+
18
+ [* .py ]
19
+ max_line_length = 100
20
+
21
+ [* .yml ]
22
+ indent_size = 2
23
+
24
+ [* .rst ]
25
+ max_line_length = 79
26
+
27
+ [Makefile ]
28
+ indent_style = tab
29
+ indent_size = 8
30
+
31
+ [* ,cover ]
32
+ trim_trailing_whitespace = false
33
+
34
+ [* .diff ]
35
+ trim_trailing_whitespace = false
36
+
37
+ [.git/* ]
38
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ exclude howto.txt
7
7
exclude Makefile
8
8
exclude requirements.txt
9
9
exclude tox.ini
10
+ exclude .editorconfig
10
11
include AUTHORS.txt
11
12
include HISTORY.rst
12
13
include LICENSE.txt
You can’t perform that action at this time.
0 commit comments