{"id":14235600,"url":"https://github.com/Eoin-McMahon/blindfold","last_synced_at":"2025-08-11T00:31:57.011Z","repository":{"id":57517438,"uuid":"268381685","full_name":"Eoin-McMahon/blindfold","owner":"Eoin-McMahon","description":" 🔎 Gitignore file generator written in rust ","archived":false,"fork":false,"pushed_at":"2024-05-23T05:32:36.000Z","size":259114,"stargazers_count":79,"open_issues_count":10,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-10T01:44:17.703Z","etag":null,"topics":["developer-tools","gitignore","gitignore-templates","rust","tools"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/blindfold","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Eoin-McMahon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-31T23:26:28.000Z","updated_at":"2024-11-05T00:40:38.000Z","dependencies_parsed_at":"2023-10-15T06:23:37.479Z","dependency_job_id":"3f1b83b0-f723-4fb4-9422-eee9f80ad6a6","html_url":"https://github.com/Eoin-McMahon/blindfold","commit_stats":{"total_commits":107,"total_committers":9,"mean_commits":11.88888888888889,"dds":"0.28037383177570097","last_synced_commit":"601713f8b5413294d344ef2007e2fcc02d7f8271"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eoin-McMahon%2Fblindfold","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eoin-McMahon%2Fblindfold/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eoin-McMahon%2Fblindfold/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eoin-McMahon%2Fblindfold/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Eoin-McMahon","download_url":"https://codeload.github.com/Eoin-McMahon/blindfold/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229478677,"owners_count":18079372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["developer-tools","gitignore","gitignore-templates","rust","tools"],"created_at":"2024-08-20T21:02:08.318Z","updated_at":"2025-08-11T00:31:56.756Z","avatar_url":"https://github.com/Eoin-McMahon.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/Eoin-McMahon/Blindfold/master/assets/banner.png\" alt=\"banner\" style=\"width:100%;height:20%;\"\u003e\n\u003cbr\u003e\nLogo courtesy of \u003ca href=\"https://www.instagram.com/do.graphics/\"\u003eDominic Houston-Watt\u003c/a\u003e\n\u003c/p\u003e\n\u003c!-- \u003ch1 align=\"center\"\u003e Blindfold - a lightweight and simple .gitignore generator\u003c/h1\u003e --\u003e\n\n[![Build](https://github.com/Eoin-McMahon/blindfold/workflows/Build/badge.svg)](https://github.com/Eoin-McMahon/blindfold/actions?query=workflow%3ABuild)\n[![Crates.io](https://img.shields.io/crates/d/blindfold?color=d)](https://crates.io/crates/blindfold)\n[![GitHub license](https://img.shields.io/github/license/Eoin-McMahon/Blindfold)](https://github.com/Eoin-McMahon/Blindfold/blob/master/license.txt)\n[![GitHub stars](https://img.shields.io/github/stars/Eoin-McMahon/Blindfold)](https://github.com/Eoin-McMahon/Blindfold/stargazers)\n\n## ✨ Features\n* Pulls .gitignore templates from gitignore.io.\n* Clean and simple CLI\n* Allows for the combination of any number of different templates all into one gitignore\n* Allows for appending to pre-existing gitignore templates so that custom directories are not overridden.\n\n## 📦 Installation\nNOTE: Rust must be installed on your system for this to work. (\u003ca href=\"https://www.rust-lang.org/learn/get-started\"\u003eInstall Rust\u003c/a\u003e)\n\n#### 📥 Download from crates.io\n\n```bash\ncargo install blindfold\n```\n\n#### 🏗️ Build from source\n```bash\ngit clone https://github.com/Eoin-McMahon/blindfold.git\ncd blindfold\ncargo install --path ./\n```\n\nThis will install the binary and add it to your path. Once installed you can use the tool as shown in the examples below.\n\n## 🔧 Examples of use:\n```bash\n# generates a single gitignore file for both dart and flutter in ./src/.gitignore\nblindfold generate dart flutter -d ./src/\n```\n\n```bash\n# use the append flag to add to the pre-existing gitignore file (can be shortened to -a)\nblindfold generate macos --append\n```\n\n```bash\n# you can specify a specific directory to store the gitignore file in using the dir argument\nblindfold generate rust --dir ./src/\n```\n\n```bash\n# arguments can also be written in shorthand\nblindfold generate rust -d ./src/ -a \n```\n\n```bash\n# shows full table list of available templates\nblindfold list\n```\n\n```bash\n# There is a help screen that can be shown which details the subcommands and arguments to supply to the program\nblindfold -h\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEoin-McMahon%2Fblindfold","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FEoin-McMahon%2Fblindfold","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEoin-McMahon%2Fblindfold/lists"}