/ .gitignore
.gitignore
  1  # Logs
  2  logs
  3  *.log
  4  npm-debug.log*
  5  yarn-debug.log*
  6  yarn-error.log*
  7  lerna-debug.log*
  8  
  9  # radata files
 10  radata*
 11  
 12  # radata folder
 13  radata/
 14  
 15  # Diagnostic reports (https://nodejs.org/api/report.html)
 16  report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
 17  
 18  # Runtime data
 19  pids
 20  *.pid
 21  *.seed
 22  *.pid.lock
 23  
 24  # Directory for instrumented libs generated by jscoverage/JSCover
 25  lib-cov
 26  
 27  # Coverage directory used by tools like istanbul
 28  coverage
 29  *.lcov
 30  
 31  # nyc test coverage
 32  .nyc_output
 33  
 34  # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
 35  .grunt
 36  
 37  # Bower dependency directory (https://bower.io/)
 38  bower_components
 39  
 40  # node-waf configuration
 41  .lock-wscript
 42  
 43  # Compiled binary addons (https://nodejs.org/api/addons.html)
 44  build/Release
 45  
 46  # Dependency directories
 47  node_modules/
 48  jspm_packages/
 49  
 50  # TypeScript v1 declaration files
 51  typings/
 52  
 53  # TypeScript cache
 54  *.tsbuildinfo
 55  
 56  # Optional npm cache directory
 57  .npm
 58  
 59  # Optional eslint cache
 60  .eslintcache
 61  
 62  # Microbundle cache
 63  .rpt2_cache/
 64  .rts2_cache_cjs/
 65  .rts2_cache_es/
 66  .rts2_cache_umd/
 67  
 68  # Optional REPL history
 69  .node_repl_history
 70  
 71  # Output of 'npm pack'
 72  *.tgz
 73  
 74  # Yarn Integrity file
 75  .yarn-integrity
 76  
 77  # dotenv environment variables file
 78  .env
 79  .env.test
 80  
 81  # parcel-bundler cache (https://parceljs.org/)
 82  .cache
 83  
 84  # Next.js build output
 85  .next
 86  
 87  # Nuxt.js build / generate output
 88  .nuxt
 89  dist
 90  
 91  # Gatsby files
 92  .cache/
 93  # Comment in the public line in if your project uses Gatsby and *not* Next.js
 94  # https://nextjs.org/blog/next-9-1#public-directory-support
 95  # public
 96  
 97  # vuepress build output
 98  .vuepress/dist
 99  
100  # Serverless directories
101  .serverless/
102  
103  # FuseBox cache
104  .fusebox/
105  
106  # DynamoDB Local files
107  .dynamodb/
108  
109  # TernJS port file
110  .tern-port
111  
112  # Ignore releases folder
113  release/
114  
115  # Ignore zip files for downloaded extensions
116  app/extensions/builtins/
117  
118  # Ignore RC file used for testing the config
119  .agregorerc
120  
121  # Ignore nano temporary files
122  *.swp
123  
124  # prettier config
125  .prettierrc
126  
127  # visual code config
128  .vscode/
129  .vs/
130  
131  # We use yarn lockfiles instead of package-lock
132  package-lock.json
133  
134  # This gets generated post install
135  app/version.js
136  
137  # This gets generated when I open in a Container
138  .devcontainer