# Line ending normalization. ------------------------- # Reference https://help.github.com/articles/dealing-with-line-endings/ # Set the default behavior, in case people don't have core.autocrlf set. * text=auto # Explicitly declare text files you want to always be normalized and converted to native line endings on checkout. *.inc text *.ini text # Declare files that will always have LF line endings on checkout. .htaccess text eol=lf *.css text eol=lf *.htm text eol=lf *.html text eol=lf *.js text eol=lf *.json text eol=lf *.map text eol=lf *.md text eol=lf *.mjs text eol=lf *.php text eol=lf *.po text eol=lf *.pot text eol=lf *.sql text eol=lf *.svg text eol=lf *.ts text eol=lf *.txt text eol=lf *.xml text eol=lf *.yml text eol=lf # Denote all files that are truly binary and should not be modified. *.eot binary *.gif binary *.ico binary *.jpeg binary *.jpg binary *.mp3 binary *.mp4 binary *.otf binary *.png binary *.swf binary *.ttf binary *.wav binary *.woff binary *.woff2 binary # End line ending normalization. ---------------------- # Export ignore folders, files. /.dev-notes export-ignore /.github export-ignore /.gitattributes export-ignore /.gitignore export-ignore /.htaccess export-ignore /.tests export-ignore /jest.config.js export-ignore /jest.config.mjs export-ignore /node_modules export-ignore /package.json export-ignore /package-lock.json export-ignore /tests export-ignore