-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (58 loc) · 1.33 KB
/
Copy path.gitignore
File metadata and controls
67 lines (58 loc) · 1.33 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
# Dependencies
# Ignore Composer's vendor directory
vendor/
# Ignore Node.js modules directory
node_modules/
# Build files & Artifacts
# Ignore common build output directories
build/
dist/
# Ignore packaged plugin files (zips, tarballs, etc.)
*.zip
*.tar.gz
*.rar
*.tgz
# Log files
# Ignore general log files
*.log
# Ignore npm debug logs
npm-debug.log*
# Ignore Yarn error logs
yarn-error.log
# Ignore PHP error logs (if generated locally within plugin dir)
error_log
php_errorlog
debug.log
# Operating System generated files
# Ignore macOS specific files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
# Ignore Windows specific files
Thumbs.db
ehthumbs.db
desktop.ini
# IDE / Editor specific files
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
nbproject/ # NetBeans
*.swp # Vim swap files
*~ # Backup files
# WordPress specific (if your plugin generates these within its own directory)
# For example, if your plugin has its own internal cache or temporary files.
# Most of the general wp-content/ paths from your list are for when the repo
# is the entire WordPress site, not just the plugin.
# wp-config.php should NEVER be in a plugin repository.
# If your plugin uses WP-CLI for scaffolding or other tools generate these:
phpcs.xml.dist
phpunit.xml.dist
.travis.yml
.phpcs.xml
# Sass cache
.sass-cache/
# Grunt/Gulp temporary files
.grunt/