# Moodle plugin .gitignore

# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
.project
.classpath
.settings/

# Build files
node_modules/
package-lock.json
yarn.lock

# Temporary files
*.tmp
*.bak
*.log
*.cache

# Windows "Mark of the Web" artifacts
*Zone.Identifier*

# Moodle specific
config.php
*.local

# CI and testing
ci/
moodle/
moodledata/
# Local CI helper scripts directory (CI runs via GitHub Actions)
tests/
# Local PHP_CodeSniffer configuration (excludes tests directory for local use)
phpcs.xml
# Local moodle-plugin-ci configuration (for local testing only)
.moodle-plugin-ci.yml

