mirror of
https://github.com/github/gitignore.git
synced 2025-02-22 06:04:54 +08:00
Enhance .gitignore with additional entries for better coverage
This commit is contained in:
parent
d49bd6f0f7
commit
aab07392b6
@ -1,30 +1,73 @@
|
|||||||
/vendor/
|
# Dependency directories
|
||||||
node_modules/
|
/vendor
|
||||||
|
/node_modules
|
||||||
|
/.fleet
|
||||||
|
/.idea
|
||||||
|
/.nova
|
||||||
|
/.vscode
|
||||||
|
/.zed
|
||||||
|
|
||||||
|
# Build and public directories
|
||||||
|
/public/build
|
||||||
|
/public/hot
|
||||||
|
/public/storage
|
||||||
|
|
||||||
|
# Storage files
|
||||||
|
/storage/*.key
|
||||||
|
/storage/pail
|
||||||
|
|
||||||
|
# Environment files
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
!.env.example
|
||||||
|
.env.backup
|
||||||
|
.env.production
|
||||||
|
.env.local
|
||||||
|
.env.staging
|
||||||
|
.env.testing
|
||||||
|
|
||||||
|
# Cache, logs, and debugging files
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
/auth.json
|
||||||
|
/phpactor.json
|
||||||
|
.phpunit.result.cache
|
||||||
|
/.phpunit.cache
|
||||||
|
error_log
|
||||||
|
storage/debugbar
|
||||||
|
|
||||||
# Laravel 4 specific
|
# Homestead & Vagrant
|
||||||
bootstrap/compiled.php
|
|
||||||
app/storage/
|
|
||||||
|
|
||||||
# Laravel 5 & Lumen specific
|
|
||||||
public/storage
|
|
||||||
public/hot
|
|
||||||
|
|
||||||
# Laravel 5 & Lumen specific with changed public path
|
|
||||||
public_html/storage
|
|
||||||
public_html/hot
|
|
||||||
|
|
||||||
storage/*.key
|
|
||||||
.env
|
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Homestead.json
|
Homestead.json
|
||||||
/.vagrant
|
/.vagrant
|
||||||
.phpunit.result.cache
|
|
||||||
|
|
||||||
/public/build
|
# IDE & Editor specific
|
||||||
/storage/pail
|
/.phpstorm.meta.php
|
||||||
.env.backup
|
*.sublime-project
|
||||||
.env.production
|
*.sublime-workspace
|
||||||
.phpactor.json
|
*.code-workspace
|
||||||
auth.json
|
|
||||||
|
# Composer files
|
||||||
|
composer.phar
|
||||||
|
/composer.lock
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
/coverage/
|
||||||
|
.php_cs.cache
|
||||||
|
.php_cs
|
||||||
|
/phpunit.xml
|
||||||
|
.php-version
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
*.log
|
||||||
|
*.key
|
||||||
|
*.tmp
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.orig
|
||||||
|
*.save
|
||||||
|
|
||||||
|
# Deployment files
|
||||||
|
deployment/
|
||||||
|
deploy/
|
||||||
|
build/
|
||||||
|
Loading…
Reference in New Issue
Block a user