-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
117 lines (100 loc) · 1.96 KB
/
.gitattributes
File metadata and controls
117 lines (100 loc) · 1.96 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
# Auto detect text files and perform LF normalization
* text=auto
# Source code
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.json text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
# Configuration files
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.config.js text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
.npmignore text eol=lf
.env.example text eol=lf
# Documentation
*.md text eol=lf
*.markdown text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
CHANGELOG text eol=lf
AUTHORS text eol=lf
CONTRIBUTORS text eol=lf
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Windows scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# HTML/CSS
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.less text eol=lf
# SQL
*.sql text eol=lf
# Docker
Dockerfile text eol=lf
*.dockerignore text eol=lf
docker-compose*.yml text eol=lf
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text eol=lf
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# Other binary files
*.pdf binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# Node.js
package.json text eol=lf
package-lock.json text eol=lf linguist-generated=true
yarn.lock text eol=lf linguist-generated=true
pnpm-lock.yaml text eol=lf linguist-generated=true
# TypeScript
tsconfig.json text eol=lf
tsconfig.*.json text eol=lf
# Git
.gitignore text eol=lf
.gitattributes text eol=lf
.gitmodules text eol=lf
# CI/CD
.github/** text eol=lf
# Exclude files from export
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore
.editorconfig export-ignore
.eslintrc.* export-ignore
.prettierrc.* export-ignore
tsconfig.json export-ignore
jest.config.* export-ignore
*.test.ts export-ignore
*.spec.ts export-ignore
tests/** export-ignore
docs/** export-ignore