forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
92 lines (83 loc) · 3.07 KB
/
.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
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
# inspired by https://github.com/alexkaratarakis/gitattributes
## Default
* text=auto
*.svg binary
## Repo configurations
.*coveragerc* text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitkeep text eol=lf
.*ignore* text eol=lf
.npmrc text eol=lf
*.tf text eol=lf
vim text eol=lf
gitconfig text eol=lf
inventory text eol=lf
pylintrc* text eol=lf
## Script
*.bat text eol=lf
*.cmd text eol=lf
*.mk text eol=lf
*.patch text eol=lf
*.ps1 text eol=lf
*.py text eol=lf
*.sh text eol=lf
Dockerfile text eol=lf
Makefile text eol=lf
makefile text eol=lf
Vagrantfile text eol=lf
## Code
*.c text eol=lf
*.groovy text eol=lf
*.php text eol=lf
*.sql text eol=lf
## Web
*.coffee text eol=lf
*.css text eol=lf
*.html* text eol=lf
*.js text eol=lf
*.less text eol=lf
*.scss text eol=lf
## Web Templates
*.mustache text eol=lf
*.underscore text eol=lf
## Settings, Data, and Declarative Scripts
*.cfg text eol=lf
*.cnf text eol=lf
*.conf text eol=lf
*.csv text eol=lf
*.diff text eol=lf
*.ini text eol=lf
*.j2 text eol=lf
*.json text eol=lf
*.sjson text eol=lf
*.xml text eol=lf
*.XML text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
config text eol=lf
## Documentation and Content
*.example text eol=lf
*.feature text eol=lf
*.log text eol=lf
*.md text eol=lf
*.plain text eol=lf
*.po text eol=lf
*.properties text eol=lf
*.rst text eol=lf
*.srt text eol=lf
*.txt* text eol=lf
*.TXT text eol=lf
*.vtt text eol=lf
AUTHORS text eol=lf
COPYING text eol=lf
LICENSE text eol=lf
README text eol=lf
# list built using the following commands
#
# files WITH extensions
# find . -type f -printf '%f\n' | grep -i "\." | sed 's|.*\.||' | grep -v -i "^\(db\|pkl\|pyc\|pyd\|pyo\|ai\|bmp\|eps\|gif\|ico\|jng\|jp2\|jpg\|jpeg\|jpx\|jxr\|pdf\|png\|psb\|psd\|svg\|graphml\|svgz\|tif\|tiff\|wbmp\|webp\|3gpp\|3gp\|as\|asf\|asx\|fla\|flv\|m4v\|mng\|mov\|mp4\|mpeg\|mpg\|ogv\|swc\|swf\|webm\|7z\|gz\|jar\|rar\|tar\|zip\|mo\|bcmap\|ttf\|eot\|otf\|woff\|woff2\|dat\|dll\|exe\|wav\|cer\|config\|content\|crt\|cscfg\|csdef\|cur\|DS_Store\|fic\|idx\|key\|ogg\|lci\|lib\|man\|metagen\|mui\|snk\|winmd\|xsd\|csplugin\|exp\|nupkg\|pack\|pdb\|pem\|pfx\|pub\|ps1xml\|sample\|assemblylookupcache\|psd1\|notyaml\|mp99\|out\|noci\)$" | sort | uniq
#
# files with NO extensions
# find . -type f | grep -v "\.git" | sed 's|.*/||' | grep -v "\." | grep -v -i "font\|default_mdsd\|rsa\|10periodic\|20unattended-upgrade\|bash_profile\|browsermob-proxy\|go\-agent\-env\-vars\|ec2_\|mongodb_\|munin\-edx\|rds_local\|route53_2_1_1_0\|ssh_key_forward\|tag_environment_prod\|util_map\|vimrc\|vpc_lookup\|x11_display" | sort | uniq
#