From a1898274b03923554b16a35421b325e4f469460c Mon Sep 17 00:00:00 2001 From: "alex.sharov" Date: Tue, 27 Jul 2021 09:54:09 +0700 Subject: [PATCH] .gitignore --- .gitignore | 81 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 69 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 66fd13c90..850526e64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,72 @@ -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll -*.so -*.dylib +# See http://help.github.com/ignore-files/ for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile ~/.gitignore_global -# Test binary, built with `go test -c` -*.test +/tmp +*/**/*un~ +*/**/*.test +*un~ +.DS_Store +*/**/.DS_Store +.ethtest +*/**/*tx_database* +*/**/*dapps* +build/_vendor/pkg +/*.a +docs/readthedocs/build -# Output of the go coverage tool, specifically when used with LiteIDE -*.out +#* +.#* +*# +*~ +.project +.settings -# Dependency directories (remove the comment below to include it) -# vendor/ +# Used by mdbx Makefile +/ethdb/mdbx/dist/CMakeFiles/* +/ethdb/mdbx/dist/CMakeCache* +/ethdb/mdbx/dist/*.cmake +/ethdb/mdbx/dist/*.dll +/ethdb/mdbx/dist/*.exe +/ethdb/mdbx/dist/Makefile + +# used by the Makefile +/build/_workspace/ +/build/cache/ +/build/bin/ +/geth*.zip + +# travis +profile.tmp +profile.cov + +# IdeaIDE +.idea + +# VS Code +.vscode + +# dashboard +/dashboard/assets/flow-typed +/dashboard/assets/node_modules +/dashboard/assets/stats.json +/dashboard/assets/bundle.js +/dashboard/assets/bundle.js.map +/dashboard/assets/package-lock.json + +**/yarn-error.log +/timings.txt +right_*.txt +root_*.txt + +__pycache__ +docker-compose.dev.yml +/build +*.tmp + +/ethdb/*.fail + +libmdbx/build/* +tests/testdata/* \ No newline at end of file