-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
85 lines (66 loc) · 1.47 KB
/
.gitignore
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
# ===============================
# Ignoring files in files/lib/system/api/
# ===============================
# Ignore all files and subdirectories in files/lib/system/api/
files*/lib/system/api/**
# Ensure that the directories themselves are not ignored
!files*/lib/system/api/
!files*/lib/system/api/**/
# Ignore specific subdirectories
files*/lib/system/api/**/test/
files*/lib/system/api/**/tests/
files*/lib/system/api/**/doc/
files*/lib/system/api/**/docs/
# Include all .php files as well as composer.json and composer.lock
!files*/lib/system/api/**/*.php
!files*/lib/system/api/**/composer.json
!files*/lib/system/api/**/composer.lock
# ===============================
# General Ignoring Rules
# ===============================
# Node modules
node_modules/
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Cache
cache/
*.cache
*.tmp
# macOS-specific files
.DS_Store
# Windows-specific files
Thumbs.db
ehthumbs.db
# Backup files
*.bak
*.backup
*.swp
# IDE-specific files (examples for various editors)
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Other temporary files
*.temp
# PaxHeader directories (if applicable)
PaxHeader/
# ===============================
# Additional Specific Ignoring Rules
# ===============================
.php-cs-fixer.dist.php
.phpstorm.meta.php
# Ignore environment variable files
.env
.env.local
.env.*.local
# Ignore build directories
/build/
dist/
public/build/
# Ignore test reports and coverage
coverage/
*.lcov