From ab03fd2d33c23f9bc483fe17e22dde3a103be638 Mon Sep 17 00:00:00 2001 From: Wahyu Kristianto Date: Tue, 11 Jan 2022 08:32:00 +0700 Subject: [PATCH] Added an attributes file and generalize github templates (#109) --- .gitattributes | 13 +++++++++++++ .github/CODE_OF_CONDUCT.md | 3 +++ .github/CONTRIBUTING.md | 3 +++ .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/CODE_OF_CONDUCT.md create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..7a6ba5d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +* text=auto + +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +/tests export-ignore +.editorconfig export-ignore +.gitattributes export-ignore +.gitignore export-ignore +phpunit.xml export-ignore \ No newline at end of file diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..6a42e3c --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,3 @@ +# Code of Conduct + +The Leaf Code of Conduct can be found in the [Leaf website](https://leafphp.dev/coc). \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..9dd4119 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contribution Guide + +The Leaf Contribution Guide can be found in the [Leaf website](https://leafphp.dev/community/contributing.html). \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..6710e6e --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ + + +## Description + + + +## Related Issue + + + \ No newline at end of file