Skip to content

Commit

Permalink
initia custom
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Oct 14, 2024
1 parent 894646d commit 1dac987
Show file tree
Hide file tree
Showing 10 changed files with 632 additions and 48 deletions.
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Ensure that text files that any contributor introduces to the repository
# have their line endings normalized to LF
* text=auto

# All known text filetypes
*.md text
*.proto text
*.rs text
*.sh text
*.toml text
*.txt text
*.yml text

# Use Move syntax highlighter for Move IR code
*.mvir linguist-language=Move
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Rust specific ignores
# Please follow https://help.github.com/en/articles/ignoring-files to create a global
# .gitignore file locally for IDE/Emacs/Vim generated files.
**/target
**/*.rs.bk
.idea/
**/.vscode

# Ignore wallet mnemonic files used for deterministic key derivation
*.mnemonic

# GDB related
**/.gdb_history

# macOS Specific ignores
# General
.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Terraform
.terraform/

# Move Build Output
build/

# Move coverage and tracing information
.trace
*.mvcov

# Docker incremental build temporary files and directories
target-out-docker
**/Dockerfile.tmp

# Doc generation output
*.md.old

Cargo.lock
Loading

0 comments on commit 1dac987

Please sign in to comment.