-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
73 lines (69 loc) · 2.04 KB
/
.gitattributes
File metadata and controls
73 lines (69 loc) · 2.04 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
# Set Git attributes for deployment optimization
# Files to exclude from deployment
*.md export-ignore
LICENSE export-ignore
.gitignore export-ignore
.gitattributes export-ignore
.github/ export-ignore
.vscode/ export-ignore
__tests__/ export-ignore
test/ export-ignore
tests/ export-ignore
docs/ export-ignore
*.test.* export-ignore
*.spec.* export-ignore
jest.config.js export-ignore
tsconfig.json export-ignore
Dockerfile* export-ignore
docker-compose* export-ignore
*.config.js export-ignore
*.config.ts export-ignore
*.config.mjs export-ignore
tailwind.config.ts export-ignore
postcss.config.mjs export-ignore
jbig2enc/ export-ignore
check-jbig2.sh export-ignore
test-*.sh export-ignore
test-*.py export-ignore
validate-deployment.js export-ignore
.eslintrc* export-ignore
.prettier* export-ignore
.babelrc* export-ignore
# Important files not to ignore
!next.config.mjs -export-ignore
!server.js -export-ignore
!server.cjs -export-ignore
!web.config -export-ignore
!iisnode.yml -export-ignore
!startup.sh -export-ignore
# Set line endings
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.json text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.sh text eol=lf
web.config text eol=lf
iisnode.yml text eol=lf
.env* text eol=lf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.pdf binary
*.zip binary
*.gz binary
*.tgz binary
*.tar binary