
Some checks failed
iOS UniFFI Build / build-ios (push) Has been cancelled
Move build scripts, test scripts, examples, and generated files to scripts/ directory. Update .gitignore to exclude scripts/ from future commits to keep repository clean.
46 lines
478 B
Plaintext
46 lines
478 B
Plaintext
# Rust
|
|
/target/
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
*.a
|
|
*.dylib
|
|
*.so
|
|
*.dll
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Generated bindings (if you want to regenerate them)
|
|
church_core.swift
|
|
church_coreFFI.h
|
|
church_coreFFI.modulemap
|
|
libchurch_core_*.a
|
|
|
|
# Build directories
|
|
build/
|
|
dist/
|
|
|
|
# Test artifacts
|
|
coverage/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Scripts directory (build scripts, test scripts, examples)
|
|
scripts/ |