Skip to content

Commit 0350d02

Browse files
authored
Merge pull request #51 from BoatraceOpenAPI/chore/update-gitignore
chore: update .gitignore
2 parents 5ea7bb3 + 1a10ada commit 0350d02

File tree

1 file changed

+117
-3
lines changed

1 file changed

+117
-3
lines changed

.gitignore

Lines changed: 117 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,118 @@
1-
/.phpunit.cache
2-
/build
3-
/vendor
1+
#####################################
2+
# OS依存ファイル
3+
#####################################
4+
.DS_Store
5+
Thumbs.db
6+
ehthumbs.db
7+
Desktop.ini
8+
9+
#####################################
10+
# 一時ファイル・ログ・バックアップ
11+
#####################################
12+
*.log
13+
*.tmp
14+
*.swp
15+
*.swo
16+
*.bak
17+
*.orig
18+
19+
#####################################
20+
# 環境変数・機密情報
21+
#####################################
22+
.env
23+
.env.*
24+
!.env.example
25+
!.env.*.example
26+
*.key
27+
*.pem
28+
29+
#####################################
30+
# ビルド成果物・キャッシュ
31+
#####################################
32+
dist/
33+
build/
34+
out/
35+
tmp/
36+
cache/
37+
*.pyc
38+
__pycache__/
39+
40+
#####################################
41+
# IDE / エディタ設定
42+
#####################################
43+
# VSCode
44+
.vscode/
45+
.history/
46+
47+
# JetBrains系(PhpStormなど)
48+
.idea/
49+
50+
#####################################
51+
# Node.js関連
52+
#####################################
53+
node_modules/
54+
npm-debug.log
55+
yarn-error.log
56+
yarn-debug.log*
57+
pnpm-debug.log*
58+
59+
#####################################
60+
# PHP関連設定
61+
#####################################
62+
63+
# Composerの依存関係
64+
vendor/
65+
composer.phar
66+
67+
# PHPUnitのキャッシュとレポート
68+
.phpunit.cache
469
.phpunit.result.cache
70+
phpunit.result.cache
71+
phpunit.xml
72+
73+
# PHP-CS-Fixerのキャッシュ
74+
.php-cs-fixer.cache
75+
76+
# PHPStanやPsalmなど静的解析ツールのキャッシュ
77+
.phpstan/
78+
psalm.xml
79+
80+
# SymfonyやLaravelなどのキャッシュ・ログ・セッション
81+
storage/
82+
bootstrap/cache/
83+
var/cache/
84+
var/log/
85+
*.cache
86+
87+
# Laravel特有
88+
.env.backup
89+
.env.local
90+
.env.production
91+
.env.testing
92+
homestead.yaml
93+
Homestead.yaml
94+
Homestead.json
95+
96+
# WordPress(テーマ・プラグイン開発時)
97+
wp-content/uploads/
98+
wp-content/cache/
99+
wp-content/upgrade/
100+
wp-content/debug.log
101+
102+
#####################################
103+
# カバレッジ関連
104+
#####################################
105+
coverage/
106+
*.lcov
107+
108+
#####################################
109+
# その他
110+
#####################################
111+
*.iml
112+
*.class
113+
*.o
114+
*.out
115+
*.so
116+
*.dll
117+
*.exe
118+
*.pid

0 commit comments

Comments
 (0)