-
Notifications
You must be signed in to change notification settings - Fork 710
Expand file tree
/
Copy path.gitattributes
More file actions
69 lines (62 loc) · 1.38 KB
/
.gitattributes
File metadata and controls
69 lines (62 loc) · 1.38 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
# Set default behavior to automatically normalize line endings
* text=auto
# Explicitly declare text files you want to always be normalized and converted to native line endings on checkout
*.dart text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.xml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.gradle text eol=lf
*.properties text eol=lf
# Source code files (C/C++/Objective-C/Swift)
*.c text eol=lf
*.cc text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.hpp text eol=lf
*.m text eol=lf
*.mm text eol=lf
*.swift text eol=lf
# CMake files
*.cmake text eol=lf
CMakeLists.txt text eol=lf
# Generated files should always use LF (Flutter generates these)
**/generated_plugin_registrant.* text eol=lf
**/generated_plugins.cmake text eol=lf
**/GeneratedPluginRegistrant.* text eol=lf
# Windows-specific files use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Visual Studio files
*.sln text eol=crlf
*.vcxproj text eol=crlf
*.vcxproj.filters text eol=crlf
# Denote all files that are truly binary and should not be modified
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.ttf binary
*.otf binary
*.eot binary
*.woff binary
*.woff2 binary
*.so binary
*.dylib binary
*.dll binary
*.exe binary
*.jar binary
*.aar binary
*.apk binary
*.aab binary
*.zip binary
*.tar binary
*.gz binary