-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
109 lines (96 loc) · 1.73 KB
/
.gitattributes
File metadata and controls
109 lines (96 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
* text=auto eol=lf
*.py text eol=lf diff=python
*.pyx text diff=python
*.pxd text diff=python
*.pyi text diff=python
*.html text diff=html
*.css text diff=css
*.js text
*.jsx text
*.ts text
*.tsx text
*.json text
*.yaml text
*.yml text
*.toml text
*.ini text
*.cfg text
*.conf text
*.config text
.env* text
.editorconfig text
.prettierrc text
*.md text diff=markdown
*.txt text
*.rst text
LICENSE text
AUTHORS text
CHANGELOG text
CONTRIBUTING text
README text
Dockerfile text
docker-compose*.yml text
.dockerignore text
*.sh text eol=lf
*.bash text eol=lf
*.fish text eol=lf
*.ps1 text eol=crlf
.gitattributes text
.gitignore text
.gitmodules text
*.jpg binary
*.jpeg binary
*.png binary
*.gif binary
*.ico binary
*.webp binary
*.svg binary
*.pdf binary
*.zip binary
*.gz binary
*.tar binary
*.tgz binary
*.bz2 binary
*.7z binary
*.rar binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.otf binary
*.pkl binary
*.pickle binary
*.pyc binary
*.pyo binary
*.db binary
*.sqlite binary
*.sqlite3 binary
*.py linguist-language=Python
*.ipynb linguist-language=Jupyter-Notebook
*.sh linguist-language=Python
requirements*.txt linguist-language=Python
.env* linguist-language=Python
*.md linguist-documentation=markdown
.github/** export-ignore
.pytest_cache/** export-ignore
.vscode/** export-ignore
.idea/** export-ignore
__pycache__/** export-ignore
*.pyc export-ignore
.env export-ignore
.env.* export-ignore
.dockerignore export-ignore
.gitignore export-ignore
.gitattributes export-ignore
CODE_OF_CONDUCT.md export-ignore
CONTRIBUTING.md export-ignore
tests/** export-ignore
*.test.py export-ignore
*.spec.py export-ignore
package-lock.json -diff
poetry.lock -diff
requirements*.txt text diff