From 3e4da32d92d06448244749966b8b5b7b76b2a83b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Ruiz?= Date: Tue, 18 Oct 2022 11:07:05 +0200 Subject: [PATCH] chore: add .gitattributes file Avoid git warnings after run the linter in windows specifing the end of line type or each file extension --- .gitattributes | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..1e959e7b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,20 @@ +* text=auto + +# Overwrite the above and declare files that will always have +# LF line endings on checkin and checkout +*.env text eol=lf +*.gql text eol=lf +*.js text eol=lf +*.json text eol=lf +*.md text eol=lf +*.scss text eol=lf +*.sh text eol=lf +*.svgtext eol=lf +*.ts text eol=lf +*.vue text eol=lf +*.xml text eol=lf +*.yml text eol=lf + +*.png binary +*.jpg binary +*.ico binary