-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
87 lines (73 loc) · 2.32 KB
/
Copy path.gitattributes
File metadata and controls
87 lines (73 loc) · 2.32 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
# Distribution files for git archive (release ZIP)
# This file controls what is excluded from git archive.
# Note: Source CSS/JS files are excluded from release ZIP
# (only minified assets are included)
# Exclude development and build files
composer.json export-ignore
composer.lock export-ignore
vendor/ export-ignore
node_modules/ export-ignore
package.json export-ignore
package-lock.json export-ignore
# Exclude source JS/CSS files (only minified assets in release)
assets/js/*.js export-ignore
assets/js/**/*.js export-ignore
assets/css/*.css export-ignore
# Exclude development configuration
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
.phpcs.xml.cache export-ignore
.phpunit.result.cache export-ignore
.phpunit.cache export-ignore
phpdoc.xml export-ignore
.prettierrc export-ignore
.envrc export-ignore
.envrc.example export-ignore
.eslintrc.json export-ignore
debug.php export-ignore
debug.php.example export-ignore
# Exclude Git and CI files
.gitignore export-ignore
.gitattributes export-ignore
.github/ export-ignore
/fe-csv-import-export/ export-ignore
# Exclude documentation (keep LICENSE for release, use readme.txt for WordPress.org)
README.md export-ignore
docs/ export-ignore
phpdoc/ export-ignore
CONTRIBUTING.md export-ignore
AGENT.md export-ignore
SECURITY.md export-ignore
# Exclude large banner images (not needed for plugin functionality)
assets/images/fe-csv-import-export-banner.jpeg export-ignore
assets/images/banner-772x250.png export-ignore
assets/images/icon-256x256.png export-ignore
assets/images/icon-128x128.png export-ignore
# Exclude WordPress.org directory assets (screenshots, icons, banners)
assets/screenshot-*.png export-ignore
# Exclude temporary and cache files
*.log export-ignore
debug.log export-ignore
.DS_Store export-ignore
Thumbs.db export-ignore
.eslintignore export-ignore
.prettierignore export-ignore
# Exclude IDE files
.vscode/ export-ignore
.idea/ export-ignore
*.swp export-ignore
*.swo export-ignore
# Exclude test files
tests/ export-ignore
phpunit.xml export-ignore
phpunit-standalone.xml export-ignore
wp-tests-config.php.example export-ignore
# Exclude development directories
_deprecated/ export-ignore
dev-notes/ export-ignore
# Exclude build artifacts
*.tar.gz export-ignore
*.zip export-ignore
# Exclude local development helpers
test-release.sh export-ignore
test-release/ export-ignore