mirror of
https://github.com/github/gitignore.git
synced 2026-08-30 03:37:05 +02:00
Compare commits
15 Commits
704c147840
...
9218a07972
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9218a07972 | ||
|
|
1046d8fba6 | ||
|
|
b632b12ac9 | ||
|
|
5763345204 | ||
|
|
a5221917b7 | ||
|
|
68275fc7aa | ||
|
|
6abe9c03f6 | ||
|
|
47eaa84be9 | ||
|
|
4a96a23dfd | ||
|
|
071d8034a4 | ||
|
|
c56c4c7b58 | ||
|
|
f6eef37aba | ||
|
|
2a4ac93e79 | ||
|
|
0befa5a8fd | ||
|
|
33ce59b598 |
49
Astro
Normal file
49
Astro
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
node_modules/
|
||||||
|
/triage/
|
||||||
|
/.compiler/
|
||||||
|
dist/
|
||||||
|
temp/
|
||||||
|
*.tsbuildinfo
|
||||||
|
.DS_Store
|
||||||
|
.vercel
|
||||||
|
.netlify
|
||||||
|
_site/
|
||||||
|
.astro/
|
||||||
|
scripts/smoke/*-main/
|
||||||
|
scripts/memory/project/src/pages/
|
||||||
|
benchmark/projects/
|
||||||
|
benchmark/results/
|
||||||
|
test-results/
|
||||||
|
*.log
|
||||||
|
package-lock.json
|
||||||
|
.turbo/
|
||||||
|
.eslintcache
|
||||||
|
.pnpm-store
|
||||||
|
.vscode-test/
|
||||||
|
.claude
|
||||||
|
|
||||||
|
# do not commit .env files or any files that end with `.env`
|
||||||
|
*.env
|
||||||
|
|
||||||
|
packages/astro/src/**/*.prebuilt.ts
|
||||||
|
packages/astro/src/**/*.prebuilt-dev.ts
|
||||||
|
packages/astro/test/units/_temp-fixtures/*
|
||||||
|
!packages/astro/test/units/_temp-fixtures/package.json
|
||||||
|
packages/integrations/**/.netlify/
|
||||||
|
|
||||||
|
# exclude IntelliJ/WebStorm stuff
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# ignore content collection generated files
|
||||||
|
packages/**/test/**/fixtures/**/.astro/
|
||||||
|
packages/**/test/**/fixtures/**/env.d.ts
|
||||||
|
packages/**/e2e/**/fixtures/**/.astro/
|
||||||
|
packages/**/e2e/**/fixtures/**/env.d.ts
|
||||||
|
examples/**/.astro/
|
||||||
|
examples/**/env.d.ts
|
||||||
|
|
||||||
|
# make it easy for people to add project-specific Astro settings that they don't
|
||||||
|
# want to share with others (see
|
||||||
|
# https://github.com/withastro/astro/pull/11759#discussion_r1721444711)
|
||||||
|
*.code-workspace
|
||||||
|
packages/astro/e2e/fixtures/cloudflare/.wrangler/deploy/config.json
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
# Visual Studio Code
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
!.vscode/settings.json
|
||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
|
|||||||
@ -8,7 +8,7 @@ gradle-app.setting
|
|||||||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
!gradle-wrapper.jar
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
# Avoid ignore Gradle wrappper properties
|
# Avoid ignore Gradle wrapper properties
|
||||||
!gradle-wrapper.properties
|
!gradle-wrapper.properties
|
||||||
|
|
||||||
# Cache of project
|
# Cache of project
|
||||||
|
|||||||
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/
|
||||||
@ -123,13 +123,14 @@ ipython_config.py
|
|||||||
# pixi.lock
|
# pixi.lock
|
||||||
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
||||||
# in the .venv directory. It is recommended not to include this directory in version control.
|
# in the .venv directory. It is recommended not to include this directory in version control.
|
||||||
.pixi
|
.pixi/*
|
||||||
|
!.pixi/config.toml
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
__pypackages__/
|
__pypackages__/
|
||||||
|
|
||||||
# Celery stuff
|
# Celery stuff
|
||||||
celerybeat-schedule
|
celerybeat-schedule*
|
||||||
celerybeat.pid
|
celerybeat.pid
|
||||||
|
|
||||||
# Redis
|
# Redis
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user