Skip to content
Snippets Groups Projects
Select Git revision
  • be2192f77b1f56dd4031cb053633ca2b3d98624e
  • master default
  • 5.0.0 protected
  • 4.0.0
  • dev
  • 5.0.0-superduperalpha-2
  • 5.0.0-superduperalpha-1
  • v3.0.0-prealpha
8 results

.gitattributes

Blame
  • .gitattributes 3.17 KiB
    ## GITATTRIBUTES FOR WEB PROJECTS
    #
    # These settings are for any web project.
    #
    # Details per file setting:
    #   text    These files should be normalized (i.e. convert CRLF to LF).
    #   binary  These files are binary and should be left untouched.
    #
    # Note that binary is a macro for -text -diff.
    ######################################################################
    
    ## AUTO-DETECT
    ##   Handle line endings automatically for files detected as
    ##   text and leave all files detected as binary untouched.
    ##   This will handle all files NOT defined below.
    * text=auto
    
    ## SOURCE CODE
    *.bat      text eol=crlf
    *.coffee   text
    *.css      text
    *.htm      text
    *.html     text
    *.inc      text
    *.ini      text
    *.js       text
    *.json     text
    *.jsx      text
    *.less     text
    *.od       text
    *.onlydata text
    *.php      text
    *.pl       text
    *.py       text
    *.rb       text
    *.sass     text
    *.scm      text
    *.scss     text
    *.sh       text eol=lf
    *.sql      text
    *.styl     text
    *.tag      text
    *.ts       text
    *.tsx      text
    *.xml      text
    *.xhtml    text
    
    ## DOCKER
    *.dockerignore text
    Dockerfile     text
    
    ## DOCUMENTATION
    *.markdown   text
    *.md         text
    *.mdwn       text
    *.mdown      text
    *.mkd        text
    *.mkdn       text
    *.mdtxt      text
    *.mdtext     text
    *.txt        text
    AUTHORS      text
    CHANGELOG    text
    CHANGES      text
    CONTRIBUTING text
    COPYING      text
    copyright    text
    *COPYRIGHT*  text
    INSTALL      text
    license      text