-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
71 lines (66 loc) · 1.11 KB
/
.gitattributes
File metadata and controls
71 lines (66 loc) · 1.11 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
# Git Attributes
* text=auto
# Binary Files
*.pdf binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.zip binary
*.tar binary
*.gz binary
*.bz2 binary
*.xz binary
*.7z binary
*.rar binary
*.ttf binary
*.woff binary
*.woff2 binary
# Text Files
*.css text
*.html text
*.js text
*.json text
*.md text
*.py text
*.scss text
*.sh text eol=lf
*.toml text
*.txt text
*.xml text
*.yaml text
*.yml text
*.ini text
*.rst text
*.conf text
*.env text
*.editorconfig text eol=lf
*.gitattributes text eol=lf
*.gitignore text eol=lf
requirements*.txt text eol=lf
Pipfile text eol=lf
Pipfile.lock text eol=lf
poetry.lock text eol=lf
.pre-commit-config.yaml text eol=lf
# Git Config Files
.gitattributes text
.gitignore text
.gitconfig text eol=lf
# Windows Script Files
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Archive Export Ignore
.github/ export-ignore
.idea/ export-ignore
.vscode/ export-ignore
tests/ export-ignore
docs/ export-ignore
.travis.yml export-ignore
.gitlab-ci.yml export-ignore
.readthedocs.yml export-ignore
.pre-commit-config.yaml export-ignore