hacktivist123 / goignore

A lightweight CLI tool for generating .gitignore file in your project. Built with Go and ❤️
MIT License
29 stars 6 forks source link

Impr/file detection #9

Closed quamejnr closed 1 year ago

quamejnr commented 1 year ago
  1. Searches directory recursively

This resolves an issue where files are not automatically detected if all your files are inside folders

  1. Don't initialize git

Avoid automatically initializing git in repository which might lead to git being initialized when goignore binary file is just needed to generate gitignore files. For example, I might have goignore binary file in my utilities folder to generate gitignore files to copy and paste inside my projects. Don't want to initialize git in that folder just to generate a gitignore file.

  1. Run without installing package.

    Update README.md file with instructions allowing users to use the goignore in other non-golang projects

quamejnr commented 1 year ago

You are welcome