# WordPress distribution ignore file
# This file is used when creating distribution packages for WordPress.org

# Development files
.git
.gitignore
.DS_Store
Thumbs.db
.vscode/
.idea/
*.sublime-*

# Node.js development
node_modules/
package.json
package-lock.json
yarn.lock
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Composer development
composer.lock
/tests/
/phpunit.xml
.phpunit.result.cache

# Build tools and source maps
*.map
webpack.config.js
gulpfile.js
Gruntfile.js
.eslintrc*
.stylelintrc*

# Documentation (except readme)
/docs/
/*.md
!readme.txt

# Environment and config
.env*
wp-config.php

# Build directories
/dist/
/build/
/src/

# Temporary files
*.tmp
*.temp
*.log

# Archives
*.zip
*.tar.gz
*.rar

# Testing and coverage
/coverage/
/cypress/
/tests/

# Linting and formatting configs
.prettierrc*
.editorconfig
