mirror of
https://github.com/github/gitignore.git
synced 2026-08-30 03:37:05 +02:00
Compare commits
12 Commits
cbf26e76ba
...
bdd843b921
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bdd843b921 | ||
|
|
b632b12ac9 | ||
|
|
5763345204 | ||
|
|
a5221917b7 | ||
|
|
68275fc7aa | ||
|
|
6abe9c03f6 | ||
|
|
42f7c40623 | ||
|
|
f6eef37aba | ||
|
|
2a4ac93e79 | ||
|
|
0befa5a8fd | ||
|
|
33ce59b598 | ||
|
|
cd33ea10e8 |
@ -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
|
||||||
|
|||||||
@ -1,29 +1,53 @@
|
|||||||
# Build System Artifacts
|
# Build System Artifacts
|
||||||
_build/ # MoonBit default build output directory.
|
|
||||||
.mooncakes/ # Local MoonBit package cache directory.
|
# MoonBit default build output directory.
|
||||||
|
_build/
|
||||||
|
# Local MoonBit package cache directory.
|
||||||
|
.mooncakes/
|
||||||
|
|
||||||
# Coverage and Test Artifacts
|
# Coverage and Test Artifacts
|
||||||
moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling.
|
|
||||||
_coverage # Coverage output directory used by coverage commands.
|
# Coverage reports generated by MoonBit tooling.
|
||||||
bisect.coverage # Bisect runtime coverage data file.
|
moonbit-coverage-*.txt
|
||||||
|
# Coverage output directory used by coverage commands.
|
||||||
|
_coverage/
|
||||||
|
# Bisect runtime coverage data file.
|
||||||
|
bisect.coverage
|
||||||
|
|
||||||
# JavaScript Target Artifacts
|
# JavaScript Target Artifacts
|
||||||
# *.js # Uncomment if generated JavaScript should be ignored.
|
|
||||||
*.js.map # Source map files generated for JavaScript output.
|
# Uncomment if generated JavaScript should be ignored.
|
||||||
node_modules/ # Node.js dependencies used in JS target workflows.
|
# *.js
|
||||||
|
# Source map files generated for JavaScript output.
|
||||||
|
*.js.map
|
||||||
|
# Node.js dependencies used in JS target workflows.
|
||||||
|
node_modules/
|
||||||
|
|
||||||
# WebAssembly Target Artifacts
|
# WebAssembly Target Artifacts
|
||||||
*.wasm # Compiled WebAssembly binaries.
|
|
||||||
*.wat # WebAssembly text format output.
|
# Compiled WebAssembly binaries.
|
||||||
|
*.wasm
|
||||||
|
# WebAssembly text format output.
|
||||||
|
*.wat
|
||||||
|
|
||||||
# MoonBit Pilot / Agent Artifacts
|
# MoonBit Pilot / Agent Artifacts
|
||||||
.moonagent/ # MoonBit agent runtime state and temporary files.
|
|
||||||
|
# MoonBit agent runtime state and temporary files.
|
||||||
|
.moonagent/
|
||||||
|
|
||||||
# LLVM Backend Artifacts
|
# LLVM Backend Artifacts
|
||||||
*.ll # LLVM textual intermediate representation (IR) files.
|
|
||||||
*.bc # LLVM bitcode files.
|
# LLVM textual intermediate representation (IR) files.
|
||||||
*.o # Native object files from LLVM/native compilation.
|
*.ll
|
||||||
*.s # Generated assembly source files.
|
# LLVM bitcode files.
|
||||||
*.out # Default executable output name on Unix-like systems.
|
*.bc
|
||||||
*.exe # Native executable output on Windows.
|
# Native object files from LLVM/native compilation.
|
||||||
*.dSYM/ # macOS debug symbol bundles.
|
*.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/
|
||||||
|
|||||||
@ -47,6 +47,7 @@ nosetests.xml
|
|||||||
coverage.xml
|
coverage.xml
|
||||||
*.cover
|
*.cover
|
||||||
*.py.cover
|
*.py.cover
|
||||||
|
*.lcov
|
||||||
.hypothesis/
|
.hypothesis/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
cover/
|
cover/
|
||||||
@ -122,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