/ .gitignore
.gitignore
1 node_modules 2 3 #hardhat files 4 cache 5 artifacts 6 frontend/src/hardhat 7 types 8 9 lib-cov 10 *.seed 11 *.log 12 *.csv 13 *.dat 14 *.out 15 *.pid 16 *.gz 17 *.swp 18 19 pids 20 logs 21 results 22 tmp 23 24 # Build 25 public/css/main.css 26 artifacts 27 28 # Cache 29 cache 30 31 # Coverage reports 32 coverage 33 34 # API keys and secrets 35 .env 36 37 # Dependency directory 38 node_modules 39 bower_components 40 41 # Editors 42 .idea 43 *.iml 44 45 # OS metadata 46 .DS_Store 47 Thumbs.db 48 49 # Ignore built ts files 50 dist/**/* 51 52 # ignore yarn.lock 53 yarn.lock