-
Notifications
You must be signed in to change notification settings - Fork 1
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
48 changed files
with
12,018 additions
and
0 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,14 @@ | ||
[alias] | ||
xclippy = [ | ||
"clippy", | ||
"--workspace", | ||
"--all-targets", | ||
"--", | ||
"-Dwarnings", | ||
"-Wclippy::all", | ||
"-Aclippy::upper_case_acronyms", | ||
"-Aclippy::enum-variant-names", | ||
"-Aclippy::result-large-err", | ||
"-Aclippy::mutable-key-type", | ||
"-Aclippy::map_identity", # We temporarily ignore this due to: https://github.com/rust-lang/rust-clippy/issues/11764 | ||
] |
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,153 @@ | ||
*.html | ||
*.css | ||
*.profraw | ||
*.profdata | ||
*.log | ||
*.svg | ||
*.txt | ||
coverage*/ | ||
output/ | ||
*logs/ | ||
*results/ | ||
afl*/ | ||
fuzz/afl*/ | ||
report.toml | ||
MoveSmith.toml | ||
|
||
# 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/ | ||
|
||
# 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 | ||
|
||
# Generated VM config in vm-genesis | ||
aptos-move/vm-genesis/genesis/vm_config.toml | ||
|
||
# Terraform | ||
.terraform/ | ||
terraform/terraform.tfstate* | ||
terraform/.terraform.tfstate* | ||
terraform/fullnode/*-kubernetes.json | ||
terraform/validator/*/*-kubernetes.json | ||
terraform/validator/*/*-vault.ca | ||
terraform/validator/*/*-kube.config | ||
terraform/validator/vault-init/backend.tf | ||
terraform/testnet/*-kubernetes.json | ||
terraform/testnet/*-vault.ca | ||
.terraform.lock.hcl | ||
|
||
# Move Build Output | ||
build/ | ||
|
||
# Move coverage and tracing information | ||
.trace | ||
*.mvcov | ||
|
||
# Do not ignore the Move build output under the releases for DPN, core, and | ||
# experimental -- these are the release code. | ||
!aptos-move/framework/DPN/releases/artifacts/** | ||
!aptos-move/framework/experimental/releases/artifacts/** | ||
!aptos-move/framework/aptos-framework/releases/artifacts/** | ||
|
||
# Do not ignore the Move script for the faucet. | ||
# https://stackoverflow.com/a/16318111/3846032 | ||
!aptos-move/move-examples/scripts/minter/build | ||
aptos-move/move-examples/scripts/minter/build/* | ||
!aptos-move/move-examples/scripts/minter/build/Minter | ||
aptos-move/move-examples/scripts/minter/build/Minter/* | ||
!aptos-move/move-examples/scripts/minter/build/Minter/bytecode_scripts | ||
|
||
# Docker incremental build temporary files and directories | ||
target-out-docker | ||
**/Dockerfile.tmp | ||
# Indexer grpc temporary certificates. | ||
docker/compose/indexer-grpc/data-service-grpc-server.crt | ||
docker/compose/indexer-grpc/data-service-grpc-server.key | ||
|
||
|
||
# Doc generation output | ||
*.md.old | ||
|
||
# Vim swap files | ||
*.swp | ||
*.swo | ||
|
||
# Emacs backup files | ||
*~ | ||
.\#* | ||
.*\# | ||
\#*\# | ||
|
||
# Aptos CLI / local testnet files | ||
.aptos | ||
**/*.rdb | ||
|
||
# VSCode settings | ||
.vscode/ | ||
|
||
# Typescript | ||
*.env | ||
node_modules | ||
|
||
# local /data dir sometimes used for testing | ||
/data | ||
|
||
# Cached python files | ||
__pycache__ | ||
|
||
# ignore framework release bundle file | ||
**/*.mrb | ||
|
||
# Profiler outputs | ||
aptos-move/aptos-vm-profiling/**/*.log | ||
aptos-move/aptos-vm-profiling/**/*.txt | ||
|
||
# Gas profiler outputs | ||
aptos-move/e2e-move-tests/gas-profiling | ||
gas-profiling | ||
|
||
# replay-verify and module-verify script outputs | ||
metadata-cache | ||
/local/ | ||
run_* | ||
|
||
# test files for indexer GRPC | ||
test_indexer_grpc_*.yaml | ||
test_indexer_grpc/* | ||
|
||
# ignore compiler artifacts | ||
*.dot | ||
*.bytecode | ||
!third_party/move/move-prover/tests/xsources/design/*.bytecode |
Oops, something went wrong.