Compare commits

...

8 Commits

Author SHA1 Message Date
Nwolisa Vincent
e2b514563d
Merge 585719a433 into 1046d8fba6 2026-04-27 22:09:40 +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
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
Nwolisa Vincent
585719a433
Add Assembly.gitignore file 2025-10-17 01:20:36 +01:00
Nwolisa Vincent
75d48918ef
Assembly .gitignore file 2025-10-17 01:19:34 +01:00
2 changed files with 238 additions and 0 deletions

185
Assembly.gitignore Normal file
View File

@ -0,0 +1,185 @@
# Assembly .gitignore template
# For Assembly language projects using various assemblers and toolchains
#
# Recommended: Add your OS-specific and editor-specific gitignore templates
# (e.g., Linux.gitignore, macOS.gitignore, Windows.gitignore, VisualStudio.gitignore, Vim.gitignore)
# Object files
*.o
*.obj
*.OBJ
*.ko
*.elf
# Executables and binary files
*.exe
*.out
*.bin
*.BIN
*.hex
*.HEX
*.app
*.axf
*.elf
*.i*86
*.x86_64
# Linker output
*.map
*.MAP
*.ilk
*.exp
# Library files
*.lib
*.a
*.la
*.lo
*.so
*.so.*
*.dylib
*.dll
# Assembly listing files
*.lst
*.LST
*.lis
*.LIS
# Symbol files
*.sym
*.SYM
# NASM specific
*.nasm.tmp
# MASM/TASM specific
*.cod
*.COD
# Debug files
*.dbg
*.pdb
*.idb
*.dSYM/
*.su
*.idb
*.ipdb
*.iobj
# Preprocessor output
*.i
*.ii
*.s.preprocessed
# Dependency files
*.d
*.dep
# Intel HEX and other output formats
*.s19
*.s28
*.s37
*.srec
*.ihex
# Motorola S-record files
*.mot
*.mhx
# Bootloader files
*.boot
# Disassembly files
*.disasm
*.dis
# Core dumps
core
core.*
*.core
# Backup files (common in assembly editors)
*~
*.bak
*.BAK
*.old
*.orig
*.swp
*.swo
# Build directories
build/
Build/
BUILD/
bin/
Bin/
BIN/
obj/
Obj/
OBJ/
out/
output/
Output/
dist/
release/
debug/
Debug/
Release/
# IDE and assembler-specific project files
*.workspace
*.uvproj*
*.uvopt*
*.uvgui*
*.cproj
*.atsln
*.atsuo
# Keil uVision
*.uvopt
*.uvproj
*.uvgui.*
*.uvproj.*
*.plg
*.tra
*.Administrator.*
*.bak.*
# IAR Embedded Workbench
*.eww
*.dep
*.wsdt
*.dni
*.wspos
*.dbgdt
# Atmel Studio
*.atsln
*.atsuo
*.cproj
# Make generated files
*.mk
Makefile.bak
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
# Tags and indexing
tags
TAGS
.tags
.tags_sorted_by_file
cscope.out
cscope.files
cscope.in.out
cscope.po.out
# Testing artifacts
test_results/
*.test
*.testlog

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/