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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
# Normalize text files (lf -> crlf)
# * text=auto
# Language specific
*.py text eol=crlf diff=python
*.pyc text eol=crlf diff=python
*.cs text eol=crlf diff=csharp
*.java text eol=crlf diff=java
# Documents
*.csv text eol=crlf
*.doc text eol=crlf diff=astextplain
*.docx text eol=crlf diff=astextplain
*.pdf text eol=crlf diff=astextplain
*.rtf text eol=crlf diff=astextplain
# Documentation
*.markdown text eol=lf
*.md text eol=lf
*.mdtxt text eol=lf
*.mdtext text eol=lf
*.txt text eol=lf
*.rst text eol=lf
CHANGELOG text eol=lf
CONTRIBUTING text eol=lf
*COPYRIGHT* text eol=lf
LICENSE text eol=lf
*README* text eol=lf
# Configs
*.cnf text eol=lf
*.conf text eol=lf
*.config text eol=lf
*.lock binary
*.npmignore text eol=lf
*.properties text eol=lf
*.toml text eol=lf
*.yaml text eol=lf
.yamllint text eol=lf
*.yml text eol=lf
.editorconfig text eol=lf
.env text eol=lf
package-lock.json binary
Makefile text eol=lf
makefile text eol=lf
# Graphics
*.bmp binary
*.gif binary
*.gifv binary
*.jpg binary
*.jpeg binary
*.ico binary
*.png binary
*.svg text eol=lf
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# Scripts
*.bash text eol=lf
*.sh text eol=lf
*.sql text eol=lf
# Windows
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Archives
*.7z binary
*.gz binary
*.tar binary
*.zip binary
# Docker
*.dockerignore text eol=crlf
Dockerfile text eol=crlf
# Git
*.gitattributes text eol=lf
.gitignore text eol=lf
# Web files
*.coffee text eol=lf
*.css text eol=lf diff=css
*.htm text eol=lf diff=html
*.html text eol=lf diff=html
*.ini text eol=lf
*.js text eol=lf
*.json text eol=lf
*.jsp text eol=lf
*.jspf text eol=lf
*.jspx text eol=lf
*.jsx text eol=lf
*.less text eol=lf
*.ls text eol=lf
*.map binary
*.php text eol=lf diff=php
*.scss text eol=lf diff=css
*.xml text eol=lf
*.xhtml text eol=lf diff=html
# Binary files
*.class binary
*.dll binary
*.ear binary
*.jar binary
*.so binary
*.war binary
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary
*.pyd binary
*.pyo binary
# Visual studio specific
*.sln text eol=crlf
*.csproj text eol=crlf
*.vbproj text eol=crlf
*.vcxproj text eol=crlf
*.vcproj text eol=crlf
*.dbproj text eol=crlf
*.fsproj text eol=crlf
*.lsproj text eol=crlf
*.wixproj text eol=crlf
*.modelproj text eol=crlf
*.sqlproj text eol=crlf
*.wmaproj text eol=crlf
*.xproj text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
*.vcxitems text eol=crlf
|