From 766fe414420bb78858f06b427bda9acbbca50eed Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Tue, 25 Apr 2023 13:47:55 +0300 Subject: [PATCH] add missing files --- .editorconfig | 15 +++++++++++++++ .gitattributes | 19 +++++++++++++++++++ .gitignore | 10 ++++++++-- .prettierrc | 5 +++++ 4 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .prettierrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c82b426 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9e9519b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,19 @@ +# Path-based git attributes +# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html + +# Ignore all test and documentation with "export-ignore". +/.github export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/phpunit.xml.dist export-ignore +/art export-ignore +/docs export-ignore +/tests export-ignore +/.editorconfig export-ignore +/.php_cs.dist.php export-ignore +/psalm.xml export-ignore +/psalm.xml.dist export-ignore +/testbench.yaml export-ignore +/UPGRADING.md export-ignore +/phpstan.neon.dist export-ignore +/phpstan-baseline.neon export-ignore diff --git a/.gitignore b/.gitignore index cce9e2d..65238c1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,6 @@ /public/hot /public/storage /storage/*.key -/vendor -/build .env .env.backup .phpunit.result.cache @@ -13,3 +11,11 @@ Homestead.yaml npm-debug.log yarn-error.log .php-cs-fixer.cache +.idea +build +coverage +phpunit.xml +phpstan.neon +testbench.yaml +vendor +node_modules \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..98406c6 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,5 @@ +{ + "semi": false, + "singleQuote": true, + "trailingComma": "all" +}