Created
June 12, 2018 09:42
-
-
Save omermindivanli/675258b57a05d24e65df744e90a1737c to your computer and use it in GitHub Desktop.
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
## .gitignore file Citation following Github accounts | |
## omermindivanli, octocat, facebook and | |
################### | |
## JavaScript Stuffs | |
node_modules | |
dist | |
build | |
/.eslintcache | |
coverage | |
flow-coverage/ | |
.module-cache | |
remote-repo/ | |
scripts/flow/*/.flowconfig | |
## Vim | |
*.swp | |
*.swo | |
## Sublime | |
*.sublime-project | |
*.sublime-workspace | |
## WebStorm | |
.idea | |
## VsCode | |
.vscode | |
chrome-user-data | |
## Lerna | |
/packages/*/node_modules | |
## locks | |
package-lock.json | |
yarn.lock | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment