Skip to content

Commit 3560475

Browse files
committed
chore: Update .gitignore with editor and workspace files
Added patterns to ignore common editor and workspace files such as .sublime-workspace, .vscode, and .idea directories. This helps prevent accidental commits of local development environment settings.
1 parent 50639d6 commit 3560475

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

.gitignore

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1-
# os
2-
.DS_Store
3-
4-
# vendor files
5-
/node_modules
6-
/vendor
7-
8-
# cs fixer
9-
.php-cs-fixer.cache
10-
11-
# tests
12-
.phpunit.cache
13-
/tests/coverage
14-
/tests/tmp
1+
# os
2+
.DS_Store
3+
4+
# vendor files
5+
/node_modules
6+
/vendor
7+
8+
# Editors
9+
# (sensitive workspace files)
10+
# ---------------------------
11+
*.sublime-workspace
12+
/.vscode
13+
/.idea
14+
15+
# cs fixer
16+
.php-cs-fixer.cache
17+
18+
# tests
19+
.phpunit.cache
20+
/tests/coverage
21+
/tests/tmp

0 commit comments

Comments
 (0)