From 27ed2a0f7e72848f18a3b5d39d64501c9dda9aac Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Tue, 5 Sep 2023 15:00:13 +0200 Subject: [PATCH] Adds levitate levignore configuration file to prevent breaking change notifications from expected typescript symbols (#74371) * Adds levitate levignore configuration file to prevent breaking change notifications from expected typescript symbols * Add root file to codeowners * Remove unnecessary word boundary * Exand it to changes and a\dditions too --- .github/CODEOWNERS | 1 + .levignore.js | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 .levignore.js diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 230004462cf..efcd155207c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -353,6 +353,7 @@ lerna.json @grafana/frontend-ops /lefthook.yml @grafana/frontend-ops /lefthook.rc @grafana/frontend-ops .husky/pre-commit @grafana/frontend-ops +.levignore.js @grafana/plugins-platform-frontend # public folder diff --git a/.levignore.js b/.levignore.js new file mode 100644 index 00000000000..1ebd406a038 --- /dev/null +++ b/.levignore.js @@ -0,0 +1,5 @@ +module.exports = { + removals: [/FeatureToggles\..*/], + additions: [/FeatureToggles\..*/], + changes: [/FeatureToggles\..*/], +};