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
This commit is contained in:
Esteban Beltran
2023-09-05 15:00:13 +02:00
committed by GitHub
parent f3e73fcdcf
commit 76b69d8af3
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -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
+5
View File
@@ -0,0 +1,5 @@
module.exports = {
removals: [/FeatureToggles\..*/],
additions: [/FeatureToggles\..*/],
changes: [/FeatureToggles\..*/],
};