Skip to content

Commit c4fe31f

Browse files
committed
build: .editorconfig files help with editing details
1 parent c6e1799 commit c4fe31f

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.editorconfig

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ exclude howto.txt
77
exclude Makefile
88
exclude requirements.txt
99
exclude tox.ini
10+
exclude .editorconfig
1011
include AUTHORS.txt
1112
include HISTORY.rst
1213
include LICENSE.txt

0 commit comments

Comments
 (0)