From 7a1906d673c557b943fbf8caa8fcd4255789366c Mon Sep 17 00:00:00 2001 From: Octoturge Date: Tue, 18 Aug 2026 14:33:56 +0200 Subject: [PATCH] chore(repo): pin line-ending convention via .gitattributes Without a committed .gitattributes, line-ending normalization on commit depended on each contributor's local core.autocrlf setting, so files could get re-flagged as changed by Obsidian Git purely due to EOL churn with no actual content difference. Pin text=auto eol=crlf repo-wide and renormalize stored blobs to match. Co-Authored-By: Claude Sonnet 5 --- .gitattributes | 1 + .../manifest.json | 20 +++++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0c42f3c --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=crlf diff --git a/.obsidian/plugins/obsidian-html-tags-autocomplete/manifest.json b/.obsidian/plugins/obsidian-html-tags-autocomplete/manifest.json index 6534094..e83b5da 100644 --- a/.obsidian/plugins/obsidian-html-tags-autocomplete/manifest.json +++ b/.obsidian/plugins/obsidian-html-tags-autocomplete/manifest.json @@ -1,10 +1,10 @@ -{ - "id": "obsidian-html-tags-autocomplete", - "name": "HTML Tags Autocomplete", - "version": "0.0.7", - "minAppVersion": "0.15.6", - "description": "Autocomplete HTML tags.", - "author": "Brian Carlsen", - "authorUrl": "https://github.com/bicarlsen", - "isDesktopOnly": false -} +{ + "id": "obsidian-html-tags-autocomplete", + "name": "HTML Tags Autocomplete", + "version": "0.0.7", + "minAppVersion": "0.15.6", + "description": "Autocomplete HTML tags.", + "author": "Brian Carlsen", + "authorUrl": "https://github.com/bicarlsen", + "isDesktopOnly": false +}