-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitattributes
33 lines (30 loc) · 882 Bytes
/
.gitattributes
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
* text=auto
# Mark code files with the correct EOL.
*.txt text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.xml text eol=lf
.nvmrc text eol=lf
*.ts text eol=lf
*.js text eol=lf
*.php text eol=lf
*.png binary
# Prevent Packagist from distributing some files.
/.* export-ignore
/README.md export-ignore
/CHANGELOG.md export-ignore
/src export-ignore
/types export-ignore
/package.json export-ignore
/package-lock.json export-ignore
/node_modules export-ignore
/composer.lock export-ignore
/vendor export-ignore
/extension.js export-ignore
/extension.js.map export-ignore
/jest.config.json export-ignore
/*.tar export-ignore
/*.vsix export-ignore
/tsconfig.json export-ignore
/webpack.config.js export-ignore