github.com/cloudwan/edgelq-sdk@v1.15.4/.gitignore (about) 1 # ignore all 2 * 3 # unignore all with extensions 4 !*.* 5 # unignore all dirs 6 !*/ 7 # unignore Dockerfile 8 !Dockerfile 9 # unignore Makefile 10 !Makefile 11 # unignore Gemfile 12 !Gemfile 13 14 !CODEOWNERS 15 !LICENSE 16 17 # ignore keys, certs 18 id_rsa 19 *.key 20 *.gpg 21 *key.json 22 *cred.json 23 *credentials.json 24 *.pem 25 *.csr 26 *.crt 27 *.pub 28 29 # ignore tmp files 30 *~ 31 *.swp 32 33 # ignore backup files 34 *.bak 35 *.bck 36 37 # ignore macos attribute files 38 .DS_Store 39 40 # ignore compiled objects 41 *.o 42 *.pyc 43 44 # ignore build output directories 45 out/ 46 dist/ 47 target/ 48 49 # ignore developer playground directories 50 playground 51 52 # ignore database files 53 *.db 54 55 # ignore log files (vagrant, npm) 56 *.log 57 58 # ignore project tool private dirs 59 .vscode/ 60 .vagrant/ 61 .idea/ 62 \#*\# 63 .\#* 64 .vs/ 65 66 # ignore ui caches 67 node_modules/ 68 .awcache/ 69 70 # ignore terraform stuff 71 .terraform/ 72 terraform.tfstate.d/ 73 74 # ignore go unit tests profile outputs 75 coverage.out 76 coverage.html 77 coverage_percent.txt 78 79 # golang gomock tmp files 80 gomock_reflect* 81 82 # python ignores 83 .hypothesis/ 84 .pytest_cache/ 85 reports/ 86 __pycache__/ 87 *.py[cod] 88 89 # python envs 90 .env 91 .venv 92 env/ 93 venv/ 94 ENV/ 95 env.bak/ 96 venv.bak/ 97 /.gitconfig