mirror of
https://github.com/github/gitignore.git
synced 2026-08-30 03:37:05 +02:00
Compare commits
8 Commits
8c186f7fd3
...
b42d780c67
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b42d780c67 | ||
|
|
1046d8fba6 | ||
|
|
b632b12ac9 | ||
|
|
47eaa84be9 | ||
|
|
4a96a23dfd | ||
|
|
071d8034a4 | ||
|
|
a82cd01a2a | ||
|
|
a9956fb969 |
53
MoonBit.gitignore
Normal file
53
MoonBit.gitignore
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# Build System Artifacts
|
||||||
|
|
||||||
|
# MoonBit default build output directory.
|
||||||
|
_build/
|
||||||
|
# Local MoonBit package cache directory.
|
||||||
|
.mooncakes/
|
||||||
|
|
||||||
|
# Coverage and Test Artifacts
|
||||||
|
|
||||||
|
# Coverage reports generated by MoonBit tooling.
|
||||||
|
moonbit-coverage-*.txt
|
||||||
|
# Coverage output directory used by coverage commands.
|
||||||
|
_coverage/
|
||||||
|
# Bisect runtime coverage data file.
|
||||||
|
bisect.coverage
|
||||||
|
|
||||||
|
# JavaScript Target Artifacts
|
||||||
|
|
||||||
|
# Uncomment if generated JavaScript should be ignored.
|
||||||
|
# *.js
|
||||||
|
# Source map files generated for JavaScript output.
|
||||||
|
*.js.map
|
||||||
|
# Node.js dependencies used in JS target workflows.
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# WebAssembly Target Artifacts
|
||||||
|
|
||||||
|
# Compiled WebAssembly binaries.
|
||||||
|
*.wasm
|
||||||
|
# WebAssembly text format output.
|
||||||
|
*.wat
|
||||||
|
|
||||||
|
# MoonBit Pilot / Agent Artifacts
|
||||||
|
|
||||||
|
# MoonBit agent runtime state and temporary files.
|
||||||
|
.moonagent/
|
||||||
|
|
||||||
|
# LLVM Backend Artifacts
|
||||||
|
|
||||||
|
# LLVM textual intermediate representation (IR) files.
|
||||||
|
*.ll
|
||||||
|
# LLVM bitcode files.
|
||||||
|
*.bc
|
||||||
|
# Native object files from LLVM/native compilation.
|
||||||
|
*.o
|
||||||
|
# Generated assembly source files.
|
||||||
|
*.s
|
||||||
|
# Default executable output name on Unix-like systems.
|
||||||
|
*.out
|
||||||
|
# Native executable output on Windows.
|
||||||
|
*.exe
|
||||||
|
# macOS debug symbol bundles.
|
||||||
|
*.dSYM/
|
||||||
@ -1,52 +1,30 @@
|
|||||||
# Cache and logs (Symfony2)
|
# Composer
|
||||||
/app/cache/*
|
|
||||||
/app/logs/*
|
|
||||||
!app/cache/.gitkeep
|
|
||||||
!app/logs/.gitkeep
|
|
||||||
|
|
||||||
# Email spool folder
|
|
||||||
/app/spool/*
|
|
||||||
|
|
||||||
# Cache, session files and logs (Symfony3)
|
|
||||||
/var/cache/*
|
|
||||||
/var/logs/*
|
|
||||||
/var/sessions/*
|
|
||||||
!var/cache/.gitkeep
|
|
||||||
!var/logs/.gitkeep
|
|
||||||
!var/sessions/.gitkeep
|
|
||||||
|
|
||||||
# Logs (Symfony4)
|
|
||||||
/var/log/*
|
|
||||||
!var/log/.gitkeep
|
|
||||||
|
|
||||||
# Parameters
|
|
||||||
/app/config/parameters.yml
|
|
||||||
/app/config/parameters.ini
|
|
||||||
|
|
||||||
# Managed by Composer
|
|
||||||
/app/bootstrap.php.cache
|
|
||||||
/var/bootstrap.php.cache
|
|
||||||
/bin/*
|
|
||||||
!bin/console
|
|
||||||
!bin/symfony_requirements
|
|
||||||
/vendor/
|
/vendor/
|
||||||
|
|
||||||
# Assets and user uploads
|
|
||||||
/web/bundles/
|
|
||||||
/web/uploads/
|
|
||||||
|
|
||||||
# PHPUnit
|
|
||||||
/app/phpunit.xml
|
|
||||||
/phpunit.xml
|
|
||||||
|
|
||||||
# Build data
|
|
||||||
/build/
|
|
||||||
|
|
||||||
# Composer PHAR
|
|
||||||
/composer.phar
|
/composer.phar
|
||||||
|
|
||||||
# Backup entities generated with doctrine:generate:entities command
|
# Cache, session files and logs
|
||||||
**/Entity/*~
|
/var/cache/*
|
||||||
|
/var/log/*
|
||||||
|
/var/sessions/*
|
||||||
|
!var/cache/.gitkeep
|
||||||
|
!var/log/.gitkeep
|
||||||
|
!var/sessions/.gitkeep
|
||||||
|
|
||||||
# Embedded web-server pid file
|
# Env vars & Secrets
|
||||||
/.web-server-pid
|
/.env.local
|
||||||
|
/.env.local.php
|
||||||
|
/.env.*.local
|
||||||
|
/config/secrets/prod/prod.decrypt.private.php
|
||||||
|
|
||||||
|
# Bundles assets
|
||||||
|
/public/bundles/
|
||||||
|
|
||||||
|
# Webpack Encore
|
||||||
|
/node_modules/
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
|
# PHPUnit
|
||||||
|
.phpunit.result.cache
|
||||||
|
/phpunit.xml
|
||||||
|
/phpunit.xml.dist
|
||||||
|
|||||||
52
community/PHP/Symfony.gitignore
Normal file
52
community/PHP/Symfony.gitignore
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
# Cache and logs (Symfony2)
|
||||||
|
/app/cache/*
|
||||||
|
/app/logs/*
|
||||||
|
!app/cache/.gitkeep
|
||||||
|
!app/logs/.gitkeep
|
||||||
|
|
||||||
|
# Email spool folder
|
||||||
|
/app/spool/*
|
||||||
|
|
||||||
|
# Cache, session files and logs (Symfony3)
|
||||||
|
/var/cache/*
|
||||||
|
/var/logs/*
|
||||||
|
/var/sessions/*
|
||||||
|
!var/cache/.gitkeep
|
||||||
|
!var/logs/.gitkeep
|
||||||
|
!var/sessions/.gitkeep
|
||||||
|
|
||||||
|
# Logs (Symfony4)
|
||||||
|
/var/log/*
|
||||||
|
!var/log/.gitkeep
|
||||||
|
|
||||||
|
# Parameters
|
||||||
|
/app/config/parameters.yml
|
||||||
|
/app/config/parameters.ini
|
||||||
|
|
||||||
|
# Managed by Composer
|
||||||
|
/app/bootstrap.php.cache
|
||||||
|
/var/bootstrap.php.cache
|
||||||
|
/bin/*
|
||||||
|
!bin/console
|
||||||
|
!bin/symfony_requirements
|
||||||
|
/vendor/
|
||||||
|
|
||||||
|
# Assets and user uploads
|
||||||
|
/web/bundles/
|
||||||
|
/web/uploads/
|
||||||
|
|
||||||
|
# PHPUnit
|
||||||
|
/app/phpunit.xml
|
||||||
|
/phpunit.xml
|
||||||
|
|
||||||
|
# Build data
|
||||||
|
/build/
|
||||||
|
|
||||||
|
# Composer PHAR
|
||||||
|
/composer.phar
|
||||||
|
|
||||||
|
# Backup entities generated with doctrine:generate:entities command
|
||||||
|
**/Entity/*~
|
||||||
|
|
||||||
|
# Embedded web-server pid file
|
||||||
|
/.web-server-pid
|
||||||
Loading…
Reference in New Issue
Block a user