From 16240bffaa7a9035d0ad3306136f07d6665e569c Mon Sep 17 00:00:00 2001 From: Tiexin Guo Date: Wed, 29 May 2024 04:38:28 +0800 Subject: [PATCH] chore: add git blame ignore revs file (#1228) Ignore bulk changes done by the Ruff formatter. PR: https://github.com/canonical/operator/pull/1224 Commit: https://github.com/canonical/operator/commit/d8148ab41869f6119683cf42b7e6e574f1a99bf1 To configure git to use this file, run: ``` bash git config --global blame.ignoreRevsFile .git-blame-ignore-revs ``` --- .git-blame-ignore-revs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revs diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 000000000..ed150484c --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,5 @@ +# You can configure git to automatically use this file with the following config: +# git config --global blame.ignoreRevsFile .git-blame-ignore-revs + +# Code reformatting with Ruff formatter +d8148ab41869f6119683cf42b7e6e574f1a99bf1