Skip to content

Commit 5406fef

Browse files
committed
Add .editorconfig and .gitattributes files for project configuration
1 parent 0a0bb5e commit 5406fef

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = space
9+
indent_size = 4
10+
11+
[*.{yml,yaml}]
12+
indent_size = 2
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Exclude development-only files from Composer dist tarballs.
2+
/.github export-ignore
3+
/.gitattributes export-ignore
4+
/.gitignore export-ignore
5+
/.editorconfig export-ignore
6+
/.php-cs-fixer.dist.php export-ignore
7+
/.phpunit.cache export-ignore
8+
/docs export-ignore
9+
/tests export-ignore
10+
/phpstan.neon.dist export-ignore
11+
/phpunit.xml export-ignore
12+
/CHANGELOG.md export-ignore

0 commit comments

Comments
 (0)