Skip to content

Commit 2bcfc20

Browse files
committed
chore: remove .env from version control (ignored locally)
1 parent ec8eb80 commit 2bcfc20

File tree

1 file changed

+102
-20
lines changed

1 file changed

+102
-20
lines changed

.gitignore

Lines changed: 102 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,128 @@
1-
# Composer
1+
# ==============================================================================
2+
# KaririCode DevKit - .gitignore
3+
# ==============================================================================
4+
# Mantém o repositório limpo, rastreando apenas código-fonte e configs relevantes
5+
# ==============================================================================
6+
7+
# ------------------------------------------------------------------------------
8+
# Composer / Vendors
9+
# ------------------------------------------------------------------------------
210
/vendor/
311
composer.lock
12+
/composer.phar
13+
14+
# ------------------------------------------------------------------------------
15+
# Environment Files
16+
# ------------------------------------------------------------------------------
17+
.env
18+
.env.local
19+
.env.*.local
20+
/.envrc
21+
/.envrc.d/
22+
23+
# ------------------------------------------------------------------------------
24+
# Build / Distribution / Packaging
25+
# ------------------------------------------------------------------------------
26+
/build/
27+
/dist/
28+
/tmp/
29+
/var/tmp/
30+
/*.phar
431

32+
# ------------------------------------------------------------------------------
33+
# QA & Code Quality Tools
34+
# ------------------------------------------------------------------------------
535
# PHPUnit
636
.phpunit.cache/
737
.phpunit.result.cache
838
/coverage/
939
/reports/
1040

1141
# PHPStan
42+
/.phpstan.cache
1243
/var/cache/phpstan/
13-
.phpstan.cache
1444

1545
# Psalm
16-
psalm-baseline.xml
17-
.psalm/
46+
/.psalm/
47+
/psalm-baseline.xml
1848

1949
# PHP-CS-Fixer
20-
.php-cs-fixer.cache
50+
/.php-cs-fixer.cache
2151

22-
# Infection
52+
# Infection (mutation testing)
2353
/var/cache/infection/
24-
infection.log
25-
infection.html
26-
infection-summary.log
27-
infection-debug.log
28-
infection-per-mutator.md
54+
/infection*.{log,html,md}
55+
/infection-debug.log
56+
/infection-summary.log
2957

3058
# PHPBench
31-
.phpbench/
32-
benchmarks/
59+
/.phpbench/
60+
/benchmarks/
61+
62+
# Rector / PHPMD / CodeSniffer
63+
/.rector.php
64+
/.phpcs-cache
65+
/.phpmd-cache
66+
/.phpstan-baseline.neon
67+
/.rector-cache
68+
69+
# ------------------------------------------------------------------------------
70+
# Logs
71+
# ------------------------------------------------------------------------------
72+
/*.log
73+
/logs/
74+
/storage/logs/
75+
/var/log/
76+
/*.pid
77+
78+
# ------------------------------------------------------------------------------
79+
# Docker / WSL / CI
80+
# ------------------------------------------------------------------------------
81+
/.docker/
82+
/docker-compose.override.yml
83+
/.wslconfig
84+
/.wsl2/
85+
.cache/
86+
.dockerignore
3387

34-
# IDEs
88+
# ------------------------------------------------------------------------------
89+
# IDEs / Editors / OS
90+
# ------------------------------------------------------------------------------
91+
# JetBrains / VSCode
3592
/.idea/
93+
/.vscode/
94+
*.code-workspace
95+
96+
# Vim / Emacs / Misc
97+
*~
3698
*.swp
3799
*.swo
38-
*~
100+
101+
# macOS / Windows
39102
.DS_Store
103+
Thumbs.db
104+
Desktop.ini
40105

41-
# Build artifacts
42-
/build/
43-
/dist/
106+
# ------------------------------------------------------------------------------
107+
# Node / Frontend (quando integrados ao DevKit)
108+
# ------------------------------------------------------------------------------
109+
node_modules/
110+
npm-debug.log*
111+
yarn-debug.log*
112+
yarn-error.log*
113+
.pnpm-debug.log*
44114

45-
# Logs
46-
*.log
115+
# ------------------------------------------------------------------------------
116+
# Backups / Artifacts
117+
# ------------------------------------------------------------------------------
118+
*.bak
119+
*.old
120+
*.orig
121+
*.rej
122+
*.tmp
123+
124+
# ------------------------------------------------------------------------------
125+
# Cache geral
126+
# ------------------------------------------------------------------------------
127+
.cache/
128+
var/cache/

0 commit comments

Comments
 (0)