Last active
July 12, 2018 16:34
-
-
Save shettayyy/b1168c554576cf1ddec4b16eb659e2d2 to your computer and use it in GitHub Desktop.
An extensive list of file and folder names to be ignored while working on a node, angular, react and similar types of project. I have referred various gists and sites to prepare this list. Feel free to provide feedbacks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-error.log | |
libpeerconnection.log | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
# Directory for instrumented libs generated by jscoverage/JSCover | |
lib-cov | |
# Coverage directory used by tools like istanbul | |
coverage | |
# nyc test coverage | |
.nyc_output | |
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | |
.grunt | |
# node-waf configuration | |
.lock-wscript | |
# Compiled binary addons (http://nodejs.org/api/addons.html) | |
build/Release | |
# Dependency directories | |
node_modules | |
.nvm | |
jspm_packages | |
# Optional npm cache directory and files | |
.npm | |
.eslintcache | |
# Optional REPL history | |
.node_repl_history | |
# DS_Store is a file that stores custom attributes of its containing folder, such as the position of icons or the choice of a background image. The name is # an abbreviation of Desktop Services Store, reflecting its purpose. | |
.DS_STORE | |
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.rej | |
*.swo | |
*.swp | |
*.vi | |
*~ | |
*.sass-cache | |
# .pyc contain the compiled bytecode of Python source files | |
.pyc | |
static | |
# Tests | |
_SpecRunner.html | |
__benchmarks__ | |
# Distribution/Output folder | |
build/ | |
dist/ | |
bin/ | |
public/ | |
/benchpress-build/ | |
# Docs | |
docs/.bundle | |
docs/code | |
docs/_site | |
docs/.sass-cache | |
docs/js/* | |
docs/downloads | |
docs/vendor/bundle | |
docs/api/ | |
gen_docs.disable | |
# Ruby | |
*.gem | |
# Example shared fils | |
examples/shared/*.js | |
# Module cache | |
.module-cache | |
# Editor related files | |
*.sublime-project | |
*.sublime-workspace | |
.idea | |
*.iml | |
.vscode | |
.tern-project | |
.cache | |
.project | |
.settings | |
.tags | |
.tmproj | |
nbproject | |
Thumbs.db | |
tags | |
angular.js.tmproj | |
# Temporary files. | |
tmp/ | |
# Bower stuff. | |
bower_components/ | |
# Xcode | |
!**/*.xcodeproj | |
!**/*.pbxproj | |
!**/*.xcworkspacedata | |
!**/*.xcsettings | |
!**/*.xcscheme | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
*.moved-aside | |
DerivedData | |
*.hmap | |
*.ipa | |
*.xcuserstate | |
project.xcworkspace | |
angular.xcodeproj | |
# Gradle | |
/Examples/**/android/app/build/ | |
/Examples/**/android/app/gradle/ | |
/Examples/**/android/app/gradlew | |
/Examples/**/android/app/gradlew.bat | |
/ReactAndroid/build/ | |
# Buck | |
.buckd | |
buck-out | |
/ReactAndroid/src/main/jni/prebuilt/lib/armeabi-v7a/ | |
/ReactAndroid/src/main/jni/prebuilt/lib/x86/ | |
# Test generated files | |
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js | |
# Android | |
.gradle | |
local.properties | |
*.iml | |
/android/ | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # | |
############ | |
# it's better to unpack these files and commit the raw source | |
# git has its own built in compression methods | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Logs and databases # | |
###################### | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
.agignore | |
.lvimrc | |
libpeerconnection.log | |
*.stackdump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment