Compare commits

...

17 Commits

Author SHA1 Message Date
Daniel
9175d5e27c
Merge 44db77f8d5 into 1046d8fba6 2026-04-27 23:36:56 +00:00
Devin Dooley
1046d8fba6
Merge pull request #4846 from yufeiminds/main
Add .gitignore for MoonBit
2026-04-27 09:16:09 -07:00
Yufei Li
b632b12ac9 fix: Fix comment style issues 2026-04-27 15:21:45 +08:00
Devin Dooley
5763345204
Merge pull request #4731 from gsilvan/main
Fix Python.gitignore for celery-beat
2026-04-24 14:32:31 -07:00
Devin Dooley
a5221917b7
Merge pull request #4730 from joaodinissf/patch-1
Fix typo "wrappper" --> "wrapper" in Gradle.gitignore
2026-04-24 14:31:30 -07:00
Devin Dooley
68275fc7aa
Merge pull request #4727 from RiseT/patch-2
Update VisualStudioCode.gitignore
2026-04-24 14:26:49 -07:00
Devin Dooley
6abe9c03f6
Merge pull request #4726 from RiseT/patch-1
Update Python.gitignore (pixi)
2026-04-24 14:26:09 -07:00
Devin Dooley
42f7c40623
Merge pull request #4724 from elliotwutingfeng/patch-1
Add *.lcov to Python gitignore
2026-04-24 14:16:26 -07:00
Yufei LI
47eaa84be9 fix: Remove bin 2026-04-20 01:14:53 +08:00
Yufei LI
4a96a23dfd fix: Remove deprecated folder and logs 2026-04-20 01:01:50 +08:00
Yufei LI
071d8034a4 Add .gitignore for MoonBit 2026-04-20 00:31:16 +08:00
RiseT
f6eef37aba Update Python.gitignore (pixi)
That's what pixi itself adds to .gitignore when using "pixi init".

Co-authored-by: Pavel Zwerschke <pavelzw@gmail.com>
2026-03-01 12:44:51 +01:00
Silvan Gümüşdere
2a4ac93e79
ignore all files with celerybeat-schedule prefix 2026-01-28 09:42:08 +01:00
João Dinis Ferreira
0befa5a8fd
Fix typo "wrappper" --> "wrapper" in Gradle.gitignore 2025-09-14 18:29:27 +02:00
RiseT
33ce59b598
Update VisualStudioCode.gitignore
Add section title comment
2025-09-07 09:53:32 +02:00
IT Si Fu
44db77f8d5
Update Java.gitignore
ignore IDE specific files, maven/gradle files, backup files, OS specific files, environment variables and secrets
2025-09-04 18:55:36 +08:00
Wu Tingfeng
cd33ea10e8
Add *.lcov to Python gitignore 2025-09-01 01:17:02 +08:00
5 changed files with 101 additions and 7 deletions

View File

@ -1,3 +1,4 @@
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json

View File

@ -8,7 +8,7 @@ gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Avoid ignore Gradle wrappper properties
# Avoid ignore Gradle wrapper properties
!gradle-wrapper.properties
# Cache of project

View File

@ -1,12 +1,39 @@
# Compiled class file
*.class
# Eclipse files
.classpath
.project
.settings/
# Log file
*.log
# IntelliJ IDEA files
.idea/
out/
*.iml
# VSCode files
.vscode/
# BlueJ files
*.ctxt
# Maven files
target/
.m2/
# Gradle files
build/
.gradle/
# Compiled class files
*.class
# Ignore logs and temp files
logs/
*.log
*.tmp
*.swp
*~
.\#*
# Backup Files
*.bak
# Mobile Tools for Java (J2ME)
.mtj.tmp/
@ -18,7 +45,18 @@
*.zip
*.tar.gz
*.rar
*.7z
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# Ignore OS-specific files
.DS_Store
Thumbs.db
Desktop.ini
# Ignore environment variables and secrets
.env
application.properties
application.yml

53
MoonBit.gitignore Normal file
View 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/

View File

@ -47,6 +47,7 @@ nosetests.xml
coverage.xml
*.cover
*.py.cover
*.lcov
.hypothesis/
.pytest_cache/
cover/
@ -122,13 +123,14 @@ ipython_config.py
# pixi.lock
# 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.
.pixi
.pixi/*
!.pixi/config.toml
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat-schedule*
celerybeat.pid
# Redis