Skip to content

Commit e7ecbe4

Browse files
committed
initial commit
0 parents  commit e7ecbe4

File tree

6 files changed

+457
-0
lines changed

6 files changed

+457
-0
lines changed

Diff for: .dockerignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.editorconfig
2+
.gitattributes
3+
.github
4+
.gitignore
5+
.gitlab-ci.yml
6+
.idea
7+
.pre-commit-config.yaml
8+
.readthedocs.yml
9+
.travis.yml
10+
venv

Diff for: .editorconfig

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{py,rst,ini}]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.{html,css,scss,json,yml,xml}]
16+
indent_style = space
17+
indent_size = 2
18+
19+
[*.md]
20+
trim_trailing_whitespace = false
21+
22+
[Makefile]
23+
indent_style = tab
24+
25+
[nginx.conf]
26+
indent_style = space
27+
indent_size = 2

Diff for: .gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

0 commit comments

Comments
 (0)