From b978dc89d08ee0a8faa1d3d2952d5aee53c0009a Mon Sep 17 00:00:00 2001 From: shahzadamodassir Date: Mon, 21 Oct 2024 03:33:09 +0530 Subject: [PATCH] initial commit --- .editorconfig | 18 ++++++++++++++++++ .gitattributes | 18 ++++++++++++++++++ .gitignore | 4 ++++ .mailmap | 1 + 4 files changed, 41 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .mailmap diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..74d2ba1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2111143 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,18 @@ +* text=auto + +/.editorconfig export-ignore +/.github export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/.mailmap export-ignore + +/node_modules export-ignore +/vendor export-ignore +/tests export-ignore +/vendor-bin export-ignore + +/README.md export-ignore +/UPGRADING.md export-ignore +/CODE_OF_CONDUCT.md export-ignore +/CONTRIBUTING.md export-ignore +/SECURITY.md export-ignore \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c829497 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +composer.lock +vendor +node_modules +vendor-bin \ No newline at end of file diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..4771206 --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +Shahzada Modassir \ No newline at end of file