Created
January 24, 2025 08:27
-
-
Save goodylili/7c5dc788efa04c264e9ffb9e5655090d to your computer and use it in GitHub Desktop.
.gitignore template for Move codebases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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