https://github.com/msaaddev/gitignore
⚠️ Generates .gitignore file using `npx @msaaddev/gitignore`
https://github.com/msaaddev/gitignore
git gitignore nodejs open-source
Last synced: about 2 months ago
JSON representation
⚠️ Generates .gitignore file using `npx @msaaddev/gitignore`
- Host: GitHub
- URL: https://github.com/msaaddev/gitignore
- Owner: msaaddev
- License: mit
- Created: 2021-07-10T08:15:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-24T11:28:20.000Z (almost 5 years ago)
- Last Synced: 2025-02-11T17:57:37.343Z (over 1 year ago)
- Topics: git, gitignore, nodejs, open-source
- Language: JavaScript
- Homepage: https://twitter.com/msaaddev
- Size: 48.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- Contributing: contributing.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# ⚠️ gitignore



Quickly generate a `.gitignore` file in your project.

## Usage
Navigate to your project directory then run the following command in the terminal:
```sh
npx @msaaddev/gitignore
```

## Output
Generates a `.gitignore` file with following contents in your project folder.
```.gitignore
# NPM #
##########
# Ignore all directories called node_modules in current folder and any subfolders.
node_modules/
/node_modules/
# Packages #
############
*.7z
*.dmg
*.gz
*.bz2
*.iso
*.jar
*.rar
*.tar
*.zip
*.tgz
*.map
# Logs and databases #
######################
*.log
*.sql
*.env
# OS generated files #
######################
**.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
._*
# Vim generated files #
######################
*.un~
# SASS #
##########
**/.sass-cache
**/.sass-cache/*
**/.map
# Composer #
##########
!assets/js/vendor/
wpcs/
/vendor/
# Bower #
##########
assets/bower_components/*
# Codekit #
##########
/codekit-config.json
*.codekit
**.codekit-cache/*
# Compiled Files and Build Dirs #
##########
/README.html
# PhpStrom Project Files #
.idea/
library/vendors/composer
assets/img/.DS_Store
# Visual Studio Project Files #
.vs/
# No lock files.
package-lock.json
yarn.lock
settings.dat
# next.js
/.next/
/out/
```
## ⚡️ Other Projects
I have curated a [detailed list](https://github.com/msaaddev/open-source) of all the open-source projects I have authored. Do take out a moment and take a look.
## 🔑 License & Conduct
- MIT © [Saad Irfan](https://github.com/msaaddev)
- [Code of Conduct](https://github.com/msaaddev/gitignore/blob/master/code-of-conduct.md)