|
| 1 | +* text=auto eol=lf |
| 2 | + |
| 3 | +*.blade.php diff=html |
| 4 | +*.css diff=css |
| 5 | +*.html diff=html |
| 6 | +*.md diff=markdown |
| 7 | +*.php diff=php |
| 8 | + |
1 | 9 | # Path-based git attributes |
2 | 10 | # https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html |
3 | 11 |
|
|
17 | 25 | /UPGRADING.md export-ignore |
18 | 26 | /phpstan.neon.dist export-ignore |
19 | 27 | /phpstan-baseline.neon export-ignore |
| 28 | +/.travis.yml export-ignore |
| 29 | +/.scrutinizer.yml export-ignore |
| 30 | + |
| 31 | + |
| 32 | +/.idea export-ignore |
| 33 | +/.prettierrc export-ignore |
| 34 | +/.package-lock.json export-ignore |
| 35 | +/.editorconfig export-ignore |
| 36 | +/.php_cs.dist.php export-ignore |
| 37 | +/.vscode export-ignore |
| 38 | +/images export-ignore |
| 39 | +/package.json export-ignore |
| 40 | +/postcss.config.js export-ignore |
| 41 | +/phpunit.xml.dist export-ignore |
| 42 | +/pint.json export-ignore |
| 43 | +/psalm.xml export-ignore |
| 44 | +/psalm.xml.dist export-ignore |
| 45 | +/tailwind.config.js export-ignore |
| 46 | +/testbench.yaml export-ignore |
| 47 | +/UPGRADING.md export-ignore |
| 48 | + |
| 49 | + |
| 50 | +## GITATTRIBUTES FOR WEB PROJECTS |
| 51 | +# |
| 52 | +# These settings are for any web project. |
| 53 | +# |
| 54 | +# Details per file setting: |
| 55 | +# text These files should be normalized (i.e. convert CRLF to LF). |
| 56 | +# binary These files are binary and should be left untouched. |
| 57 | +# |
| 58 | +# Note that binary is a macro for -text -diff. |
| 59 | +###################################################################### |
| 60 | + |
| 61 | +# Auto detect |
| 62 | +## Handle line endings automatically for files detected as |
| 63 | +## text and leave all files detected as binary untouched. |
| 64 | +## This will handle all files NOT defined below. |
| 65 | + |
| 66 | +# Source code |
| 67 | +*.js text |
| 68 | +*.mjs text |
| 69 | +*.cjs text |
| 70 | +*.json text |
| 71 | +*.ls text |
| 72 | +*.map text -diff |
| 73 | +*.sass text |
| 74 | +*.scss text diff=css |
| 75 | +*.sh text eol=lf |
| 76 | +.husky/* text eol=lf |
| 77 | +*.sql text |
| 78 | +*.ts text |
| 79 | + |
| 80 | +# Docker |
| 81 | +Dockerfile text |
| 82 | + |
| 83 | +# Documentation |
| 84 | +*.ipynb text eol=lf |
| 85 | +*.markdown text diff=markdown |
| 86 | +*.md text diff=markdown |
| 87 | +*.mdwn text diff=markdown |
| 88 | +*.mdown text diff=markdown |
| 89 | +*.mkd text diff=markdown |
| 90 | +*.mkdn text diff=markdown |
| 91 | +*.mdtxt text |
| 92 | +*.mdtext text |
| 93 | +*.txt text |
| 94 | +AUTHORS text |
| 95 | +CHANGELOG text |
| 96 | +CHANGES text |
| 97 | +CONTRIBUTING text |
| 98 | +COPYING text |
| 99 | +copyright text |
| 100 | +*COPYRIGHT* text |
| 101 | +INSTALL text |
| 102 | +license text |
| 103 | +LICENSE text |
| 104 | +NEWS text |
| 105 | +readme text |
| 106 | +*README* text |
| 107 | +TODO text |
| 108 | + |
| 109 | +# Templates |
| 110 | +*.dot text |
| 111 | +*.ejs text |
| 112 | +*.erb text |
| 113 | +*.haml text |
| 114 | +*.handlebars text |
| 115 | +*.hbs text |
| 116 | +*.hbt text |
| 117 | +*.jade text |
| 118 | +*.latte text |
| 119 | +*.mustache text |
| 120 | +*.njk text |
| 121 | +*.phtml text |
| 122 | +*.svelte text |
| 123 | +*.tmpl text |
| 124 | +*.tpl text |
| 125 | +*.twig text |
| 126 | +*.vue text |
| 127 | + |
| 128 | +# Configs |
| 129 | +*.cnf text |
| 130 | +*.conf text |
| 131 | +*.config text |
| 132 | +.editorconfig text |
| 133 | +*.env text |
| 134 | +.gitattributes text |
| 135 | +.gitconfig text |
| 136 | +.htaccess text |
| 137 | +*.lock text -diff |
| 138 | +package.json text eol=lf |
| 139 | +package-lock.json text eol=lf -diff |
| 140 | +pnpm-lock.yaml text eol=lf -diff |
| 141 | +.prettierrc text |
| 142 | +yarn.lock text -diff |
| 143 | +*.toml text |
| 144 | +*.yaml text |
| 145 | +*.yml text |
| 146 | +browserslist text |
| 147 | +Makefile text |
| 148 | +makefile text |
| 149 | +# Fixes syntax highlighting on GitHub to allow comments |
| 150 | +tsconfig.json linguist-language=JSON-with-Comments |
| 151 | + |
| 152 | +# Heroku |
| 153 | +Procfile text |
| 154 | + |
| 155 | +# Graphics |
| 156 | +*.ai binary |
| 157 | +*.bmp binary |
| 158 | +*.eps binary |
| 159 | +*.gif binary |
| 160 | +*.gifv binary |
| 161 | +*.ico binary |
| 162 | +*.jng binary |
| 163 | +*.jp2 binary |
| 164 | +*.jpg binary |
| 165 | +*.jpeg binary |
| 166 | +*.jpx binary |
| 167 | +*.jxr binary |
| 168 | +*.pdf binary |
| 169 | +*.png binary |
| 170 | +*.psb binary |
| 171 | +*.psd binary |
| 172 | +# SVG treated as an asset (binary) by default. |
| 173 | +*.svg text |
| 174 | +# If you want to treat it as binary, |
| 175 | +# use the following line instead. |
| 176 | +*.svgz binary |
| 177 | +*.tif binary |
| 178 | +*.tiff binary |
| 179 | +*.wbmp binary |
| 180 | +*.webp binary |
| 181 | + |
| 182 | +# Audio |
| 183 | +*.kar binary |
| 184 | +*.m4a binary |
| 185 | +*.mid binary |
| 186 | +*.midi binary |
| 187 | +*.mp3 binary |
| 188 | +*.ogg binary |
| 189 | +*.ra binary |
| 190 | + |
| 191 | +# Video |
| 192 | +*.3gpp binary |
| 193 | +*.3gp binary |
| 194 | +*.as binary |
| 195 | +*.asf binary |
| 196 | +*.asx binary |
| 197 | +*.avi binary |
| 198 | +*.fla binary |
| 199 | +*.flv binary |
| 200 | +*.m4v binary |
| 201 | +*.mng binary |
| 202 | +*.mov binary |
| 203 | +*.mp4 binary |
| 204 | +*.mpeg binary |
| 205 | +*.mpg binary |
| 206 | +*.ogv binary |
| 207 | +*.swc binary |
| 208 | +*.swf binary |
| 209 | +*.webm binary |
| 210 | + |
| 211 | +# Archives |
| 212 | +*.7z binary |
| 213 | +*.gz binary |
| 214 | +*.jar binary |
| 215 | +*.rar binary |
| 216 | +*.tar binary |
| 217 | +*.zip binary |
| 218 | + |
| 219 | +# Fonts |
| 220 | +*.ttf binary |
| 221 | +*.eot binary |
| 222 | +*.otf binary |
| 223 | +*.woff binary |
| 224 | +*.woff2 binary |
| 225 | + |
| 226 | +# Executables |
| 227 | +*.exe binary |
| 228 | +*.pyc binary |
| 229 | +# Prevents massive diffs caused by vendored, minified files |
| 230 | +**/.yarn/releases/** binary |
| 231 | +**/.yarn/plugins/** binary |
| 232 | + |
| 233 | +# RC files (like .babelrc or .eslintrc) |
| 234 | +*.*rc text |
| 235 | + |
| 236 | +# Ignore files (like .npmignore or .gitignore) |
| 237 | +*.*ignore text |
0 commit comments