-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
620 additions
and
49 deletions.
There are no files selected for viewing
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
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 |
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
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 |
Oops, something went wrong.