We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f09ff14 commit 80cd05cCopy full SHA for 80cd05c
template/.editorconfig
@@ -0,0 +1,24 @@
1
+# http://editorconfig.org
2
+
3
+root = true
4
5
+[*]
6
+indent_style = space
7
+indent_size = 4
8
+trim_trailing_whitespace = true
9
+insert_final_newline = true
10
+charset = utf-8
11
+end_of_line = lf
12
13
+[*.yml]
14
+indent_size = 2
15
16
+[*.bat]
17
+indent_style = tab
18
+end_of_line = crlf
19
20
+[LICENSE]
21
+insert_final_newline = false
22
23
+[Makefile]
24
tests/test_copier.py
@@ -27,6 +27,7 @@ def test_project_folder(default_project):
27
"docs/Makefile",
28
"docs/readme.rst",
29
"MANIFEST.in",
30
+ ".editorconfig",
31
])
32
def test_generated_file_exists(default_project, file_name):
33
assert default_project.project_dir.joinpath(file_name).exists()
0 commit comments