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 c946bcdd75
commit 27ed2a0f7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

1
.github/CODEOWNERS vendored
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
.levignore.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
removals: [/FeatureToggles\..*/],
additions: [/FeatureToggles\..*/],
changes: [/FeatureToggles\..*/],
};