From 08c58aa3a8e25d783c6453a023a51e2cf5752978 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 8 Jul 2026 16:44:03 +0200 Subject: [PATCH] chore(gitignore): ignore user-local ev-profiles JSON files (#1982) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add `src/assets/ev-profiles*.json` with negation for `ev-profiles-template.json`, alongside the existing `config` and `idtags` patterns. The three pairs are semantically identical: user-mutable local instance + committed template. The `ev-profiles.json` user file was previously untracked and surfaced as noise in `git status`; the template (`ev-profiles-template.json`) is documented in the README as the canonical starting point for the `evProfilesFile` template field consumed by the coherent MeterValues generator. Verified with `git check-ignore -v`: - `src/assets/ev-profiles.json` → matched by .gitignore:7 - `src/assets/ev-profiles-template.json` → NOT ignored (negation) --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index a64df1c8..32df8163 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ src/assets/config*.json src/scripts/scriptConfig.json src/assets/*idtags*.json !src/assets/idtags-template.json +src/assets/ev-profiles*.json +!src/assets/ev-profiles-template.json src/assets/configs-docker/*.json mikro-orm.config*.ts !mikro-orm.config-template.ts -- 2.53.0