From 65b673d3d24d3007bc33b40a4c4be1b7cdbf8633 Mon Sep 17 00:00:00 2001 From: phenoAI Governance Date: Thu, 11 Jun 2026 21:30:35 -0700 Subject: [PATCH] chore(gitignore): adopt shared rust template from phenotype-tooling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces the repo's .gitignore with the canonical Rust template from https://github.com/KooshaPari/phenotype-tooling/blob/main/templates/gitignore-rust (see PR https://github.com/KooshaPari/phenotype-tooling/pull/115). This centralizes the standard 'Generated by Cargo' / target/ pattern across the org so future Rust-template updates can ship from one place. Repo-specific lines from the prior .gitignore are preserved below the template body. See https://github.com/KooshaPari/phenotype-tooling/blob/main/docs/gitignore-adoption.md Refs: FLEET_100TASK_DAG_V4.md §85 (V14-T3-1e wave 1) --- .gitignore | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.gitignore b/.gitignore index a6a24a0..f03380a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,24 @@ +# Phenotype-org standard .gitignore — Rust +# Source: https://github.com/KooshaPari/phenotype-tooling/blob/main/templates/gitignore-rust + # Build artifacts +/target/ +**/*.rs.bk +Cargo.lock.bak + +# Editor +.idea/ +.vscode/ +*.swp + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log + +# Repo-specific lines preserved from prior .gitignore: target/ dist/ build/ @@ -7,39 +27,19 @@ build/ *.dylib *.rlib *.rmeta - -# Dependencies node_modules/ vendor/ .venv/ venv/ .env .env.local - -# IDE -.vscode/ -.idea/ -*.swp *.swo *~ - -# OS -.DS_Store -Thumbs.db - -# Logs -*.log npm-debug.log* - -# Test coverage/ *.lcov .nyc_output/ - -# Misc *.tmp *.bak *.orig - -# Grade reports -.grade-reports/ \ No newline at end of file +.grade-reports/