Skip to content

Commit d8df981

Browse files
committedJan 7, 2025·
Initial commit
0 parents  commit d8df981

File tree

78 files changed

+17155
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+17155
-0
lines changed
 

‎.editorconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
indent_size = 4
10+
indent_style = space
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.js]
15+
indent_size = 2
16+
17+
[*.{json,json.dist}]
18+
indent_size = 2
19+
20+
[*.md]
21+
trim_trailing_whitespace = false
22+
23+
[*.{neon,neon.dist}]
24+
indent_size = 2
25+
26+
[*.{xml,xml.dist}]
27+
indent_size = 2
28+
29+
[*.{yml,yml.dist}]
30+
indent_size = 2

‎.gitattributes

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Path-based git attributes
2+
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+
# Ignore tests and tooling with "export-ignore"
5+
/.github/ export-ignore
6+
/tests/ export-ignore
7+
/.editorconfig export-ignore
8+
/.gitattributes export-ignore
9+
/.gitignore export-ignore
10+
/infection.json.dist export-ignore
11+
/phpcs.xml.dist export-ignore
12+
/phpstan.neon.dist export-ignore
13+
/phpunit.github-actions.up-to-9.xml.dist export-ignore
14+
/phpunit.github-actions.xml.dist export-ignore
15+
/phpunit.xml.dist export-ignore

0 commit comments

Comments
 (0)
Please sign in to comment.