Skip to content

Instantly share code, notes, and snippets.

@goodylili
Created January 24, 2025 08:27
Show Gist options
  • Save goodylili/7c5dc788efa04c264e9ffb9e5655090d to your computer and use it in GitHub Desktop.
Save goodylili/7c5dc788efa04c264e9ffb9e5655090d to your computer and use it in GitHub Desktop.
.gitignore template for Move codebases
# Move CLI build artifacts
/build/
/storage/
/.move/
/move.lock
# Temporary files
*.tmp
*.swp
*.swo
# Logs
*.log
# IDE and editor specific files
.idea/
.vscode/
*.iml
# OS-generated files
.DS_Store
Thumbs.db
# Dependency directories
/target/
/dependencies/
/node_modules/
# Coverage reports
/coverage/
# Test artifacts
*.testdata
*.testresults
# Compiled bytecode
*.mv
*.mvb
# Ignore compiled Rust dependencies (if part of the project)
Cargo.lock
target/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment