-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (85 loc) · 2.47 KB
/
Copy path.gitignore
File metadata and controls
107 lines (85 loc) · 2.47 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
106
# =================================================================
# SPARXSTAR User Environment Check - Git Ignore
# =================================================================
# -----------------------------------------------------------------
# >> Plugin-Specific Ignores
# -----------------------------------------------------------------
# Ignore the log directory created by this plugin.
# If you customize ENVCHECK_LOG_DIR, add your custom path here too.
/wp-content/sparxstar-userenv-logs/
# Ignore dependency directories managed by Composer and NPM/Yarn.
# These should be installed by developers locally, not stored in Git.
/vendor/
/node_modules/
src/node_modules/
# Ignore build artifacts if you have a build process (e.g., for minification).
/dist/
/build/
# Ignore cache files from code quality tools
.php-cs-fixer.cache
.phpstan-cache/
# -----------------------------------------------------------------
# >> WordPress Core & Content
#
# Ignore the entire WordPress core, which should be managed separately.
# Useful if you develop inside a full WordPress installation.
# -----------------------------------------------------------------
/wp-admin/
/wp-includes/
/wp-*.php
/index.php
/xmlrpc.php
/license.txt
/readme.html
/wp-content/upgrade/
# Ignore user-generated content and other plugins/themes.
/wp-content/uploads/
/wp-content/blogs.dir/
/wp-content/cache/
/wp-content/plugins/!(sparxstar-user-environment-check-universe)/
/wp-content/themes/
# Ignore Must-Use plugin loader files if they are environment-specific.
# Keep the plugin itself, but ignore the loader if needed.
# /wp-content/mu-plugins/sparxstar-userenv-loader.php
# Ignore sensitive configuration files.
wp-config.php
wp-config-local.php
# -----------------------------------------------------------------
# >> OS & IDE Generated Files
# -----------------------------------------------------------------
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# IDEs
.idea/ # PhpStorm / JetBrains
.vscode/ # Visual Studio Code
*.sublime-project
*.sublime-workspace
nbproject/ # NetBeans
# Vim
*.swp
*~
# -----------------------------------------------------------------
# >> General Purpose Ignores
# -----------------------------------------------------------------
# Log files
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
debug.log
# Compressed files (backups, releases)
*.zip
*.tar
*.tar.gz
*.rar
*.7z
# Environment configuration files
.env
.env.*
!.env.example