mirror of
https://github.com/github/gitignore.git
synced 2026-08-29 19:27:19 +02:00
Compare commits
8 Commits
a3606d0b7e
...
e2b514563d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e2b514563d | ||
|
|
1046d8fba6 | ||
|
|
b632b12ac9 | ||
|
|
47eaa84be9 | ||
|
|
4a96a23dfd | ||
|
|
071d8034a4 | ||
|
|
585719a433 | ||
|
|
75d48918ef |
185
Assembly.gitignore
Normal file
185
Assembly.gitignore
Normal 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
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/
|
||||
Loading…
Reference in New Issue
Block a user