From e86de48539f261d8ffad81e8b464055820bbb120 Mon Sep 17 00:00:00 2001 From: wassname Date: Sat, 1 Dec 2018 16:15:29 +0800 Subject: [PATCH] gitignore --- .gitignore | 124 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 91 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index 96374c4..98f5645 100644 --- a/.gitignore +++ b/.gitignore @@ -1,43 +1,101 @@ -# Windows image file caches -Thumbs.db -ehthumbs.db -# Folder config file -Desktop.ini +# Created by https://www.gitignore.io/api/node,linux +# Edit at https://www.gitignore.io/?templates=node,linux -# Recycle Bin used on file shares -$RECYCLE.BIN/ +### Linux ### +*~ -# Windows Installer files -*.cab -*.msi -*.msm -*.msp +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* -# Windows shortcuts -*.lnk +# KDE directory preferences +.directory -# ========================= -# Operating System Files -# ========================= +# Linux trash folder which might appear on any partition or disk +.Trash-* -# OSX -# ========================= +# .nfs files are created when an open file is removed but is still being accessed +.nfs* -.DS_Store -.AppleDouble -.LSOverride +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* -# Thumbnails -._* +# Runtime data +pids +*.pid +*.seed +*.pid.lock -# Files that might appear on external disk -.Spotlight-V100 -.Trashes +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +#DynamoDB Local files +.dynamodb/ + +# End of https://www.gitignore.io/api/node,linux