This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
forked from move-language/move
-
Notifications
You must be signed in to change notification settings - Fork 34
/
.gitignore
77 lines (65 loc) · 2.18 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# 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
# Move LLVM compiler temp test files
**/move-mv-llvm-compiler/**/ir-tests/*.actual.ll
**/move-mv-llvm-compiler/**/ir-tests/*.mv
**/move-mv-llvm-compiler/**/move-ir-tests/**/*.mv
**/move-mv-llvm-compiler/**/move-ir-tests/**/*.actual.ll
**/move-mv-llvm-compiler/**/move-to-llvm-tests/**/*.ll.actual
**/move-mv-llvm-compiler/**/stdlib-tests/**/*.ll.actual
**/move-mv-llvm-compiler/**/stdlib-with-p-option-tests/**/*.ll.actual
**/move-mv-llvm-compiler/**/cli-tests/**/*.ll.actual
**/move-mv-llvm-compiler/**/cli-tests/basic-coin-build/absolute_path_results/*
**/move-mv-llvm-compiler/**/cli-tests/basic-coin-build/relative_path_results/*
**/move-mv-llvm-compiler/**/dwarf-tests/basic-coin-build/stored_results/*
**/move-mv-llvm-compiler/**/dwarf-tests/dwarf-struct-build/stored_results/*
**/move-mv-llvm-compiler/**/dwarf-tests/dwarf-struct-2-modules-build/stored_results/*
**/move-mv-llvm-compiler/**/dwarf-tests/dwarf-functions-build/stored_results/*
**/move-mv-llvm-compiler/**/dwarf-tests/dwarf-vector-build/stored_results/*
**/move-mv-llvm-compiler/**/rbpf-tests/**/*.mv
**/move-mv-llvm-compiler/**/rbpf-tests/**/*.o
**/move-mv-llvm-compiler/**/rbpf-tests/**/*.so
**/move-mv-llvm-compiler/**/rbpf-tests/**/generated_interface_files
**/move-mv-llvm-compiler/**/cargo-target-dir