From 064bf7975e6c7e591605d237f4eb72f8f57a30ab Mon Sep 17 00:00:00 2001 From: Simon Schaufelberger Date: Mon, 14 Jul 2025 14:27:27 +0200 Subject: [PATCH] [TASK] Add .gitignore to exclude file for composer package --- .gitattributes | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..611cd10 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,32 @@ +* text=auto +*.css linguist-vendored +*.scss linguist-vendored + +# Enforce checkout with linux lf consistent over all platforms +*.html text eol=lf +*.css text eol=lf +*.tmpl text eol=lf +*.less text eol=lf +*.scss text eol=lf +*.js text eol=lf +*.json text eol=lf +*.php text eol=lf +*.rst text eol=lf +*.md text eol=lf +*.yml text eol=lf +*.yaml text eol=lf +*.ts text eol=lf +*.typoscript text eol=lf +*.xlf text eol=lf +*.sh text eol=lf +*.sql text eol=lf +*.txt text eol=lf + +/.* export-ignore +/Build export-ignore +/Documentation export-ignore +/Tests export-ignore +/CODE_OF_CONDUCT.md export-ignore +/CONTRIBUTING.md export-ignore +/phpstan.neon export-ignore +/phpstan-baseline.neon export-ignore