-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
105 lines (100 loc) · 2.53 KB
/
.gitattributes
File metadata and controls
105 lines (100 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Set default behavior to automatically normalize line endings
* text=auto
# Force LF for code files
*.php text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.html text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.xml text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.toml text eol=lf
# Force CRLF for Windows-specific files
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Mark binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.webp binary
*.pdf binary
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
*.eot binary
# Export ignore (files not included in git archive / distribution)
/.github export-ignore
/.claude export-ignore
/config export-ignore
/tools export-ignore
/src/Analyzers export-ignore
/src/Models export-ignore
/src/Enums export-ignore
/src/Interfaces export-ignore
/src/DesignSystem export-ignore
/src/Editor export-ignore
/src/Blocks/editor export-ignore
src/Blocks/*/*.js.map export-ignore
src/Blocks/*/*.css.map export-ignore
src/Blocks/*/index.tsx export-ignore
src/Blocks/*/edit.tsx export-ignore
src/Blocks/*/save.tsx export-ignore
src/Blocks/*/view.ts export-ignore
src/Blocks/*/style.scss export-ignore
.wp-env.json export-ignore
.distignore export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
.prettierrc export-ignore
.stylelintignore export-ignore
.typos.toml export-ignore
stylelintrc.json export-ignore
tsconfig.json export-ignore
webpack.config.js export-ignore
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
phpunit.xml export-ignore
phpunit.xml.dist export-ignore
Makefile export-ignore
package.json export-ignore
package-lock.json export-ignore
composer.json export-ignore
composer.lock export-ignore
README.md export-ignore
INSTRUCTIONS.md export-ignore
CHANGELOG.md export-ignore
CONTRIBUTING.md export-ignore
CONTRIBUTORS.md export-ignore
CODE_OF_CONDUCT.md export-ignore
# Dev-only and tooling (align with .distignore for `git archive` / source exports)
.nvmrc export-ignore
.vscode export-ignore
.idea export-ignore
.cursor export-ignore
.fleet export-ignore
.wp-env.override.json export-ignore
node_modules/ export-ignore
tests/ export-ignore
patterns/README.txt export-ignore
.phpunit.result.cache export-ignore
.phpunit.cache/ export-ignore
*.log export-ignore
auth.json export-ignore
playwright-report/ export-ignore
test-results/ export-ignore
*.code-workspace export-ignore
docker-compose*.yml export-ignore
docker-compose*.yaml export-ignore