Logo courtesy of Dominic Houston-Watt

✨ Features
- Pulls .gitignore templates from gitignore.io.
- Clean and simple CLI
- Suggestion system to help correct potential typos
- Allows for the combination of any number of different templates all into one gitignore
📦 Installation
NOTE: Rust must be installed on your system for this to work. (Install Rust)
📥 Download from crates.io
bash
cargo install blindfold
🏗️ Build from source
bash
git clone https://github.com/Eoin-McMahon/Blindfold.git
cd Blindfold
cargo install --path ./
This will install the binary and add it to your path. Once installed you can use the tool as shown in the examples below.
🔨 Demo:

🔧 Examples of use:
```bash
generates a single gitignore file for both dart and flutter in ./src/.gitignore
blindfold --lang dart flutter
```
```bash
you can specify a specific destination to store the gitignore file using the dest argument
blindfold --lang rust --dest ./src/
```
```bash
arguments can also be written in shorthand
blindfold -l rust -d ./src/
```
```bash
shows full list of available templates
blindfold list
```
```bash
There is a help screen that can be shown which details the subcommands and arguments to supply to the program
blindfold -h
```