-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
122 lines (105 loc) · 2.22 KB
/
.gitattributes
File metadata and controls
122 lines (105 loc) · 2.22 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
110
111
112
113
114
115
116
117
118
119
120
121
122
# Auto detect text files and perform LF normalization
* text=auto
# Force Windows-style line endings for batch files
*.bat text eol=crlf
# Force Unix-style line endings for shell scripts
*.sh text eol=lf
# Binary files should not be modified
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.eot binary
*.ttf binary
*.woff binary
*.woff2 binary
*.mp3 binary
*.wav binary
*.ogg binary
# Python files should use LF line endings
*.py text eol=lf
*.pyi text eol=lf
*.pyx text eol=lf
*.pxd text eol=lf
*.pxi text eol=lf
*.pyd binary
*.so binary
*.dll binary
*.pyd binary
# Text files should use LF line endings
*.txt text eol=lf
*.md text eol=lf
*.rst text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.csv text eol=lf
*.tsv text eol=lf
*.xml text eol=lf
*.svg text eol=lf
# Git files
.gitattributes export-ignore
.gitignore export-ignore
# Documentation
README.md export-ignore
CONTRIBUTING.md export-ignore
CHANGELOG.md export-ignore
# Tests and CI
tests/ export-ignore
.tox/ export-ignore
.coverage export-ignore
htmlcov/ export-ignore
.pytest_cache/ export-ignore
.mypy_cache/ export-ignore
# Development files
.vscode/ export-ignore
.idea/ export-ignore
*.sublime-project export-ignore
*.sublime-workspace export-ignore
*.code-workspace export-ignore
# Virtual environment
venv/ export-ignore
env/ export-ignore
ENV/ export-ignore
gda-venv/ export-ignore
# Build and distribution
build/ export-ignore
dist/ export-ignore
*.egg-info/ export-ignore
*.egg export-ignore
# Local development
.env export-ignore
.env.local export-ignore
.env.*.local export-ignore
# Credentials
google_creds.json export-ignore
*.pem export-ignore
*.key export-ignore
*.p12 export-ignore
*.crt export-ignore
# Logs
*.log export-ignore
logs/ export-ignore
# Audio files
*.mp3 export-ignore
*.wav export-ignore
*.ogg export-ignore
# OS generated files
.DS_Store export-ignore
.DS_Store? export-ignore
._* export-ignore
.Spotlight-V100 export-ignore
.Trashes export-ignore
ehthumbs.db export-ignore
Thumbs.db export-ignore
# Project specific
output_*.mp3 export-ignore
cortex_tts_* export-ignore
cortex_edge_tts_* export-ignore
cortex_google_tts_* export-ignore