From: Jérôme Benoit Date: Wed, 8 Jul 2026 14:44:03 +0000 (+0200) Subject: chore(gitignore): ignore user-local ev-profiles JSON files (#1982) X-Git-Tag: cli@v4.11.0~46 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=08c58aa3a8e25d783c6453a023a51e2cf5752978;p=e-mobility-charging-stations-simulator.git chore(gitignore): ignore user-local ev-profiles JSON files (#1982) 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) --- 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