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
pull/74395/head
Esteban Beltran 2 years ago committed by GitHub
parent c946bcdd75
commit 27ed2a0f7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .github/CODEOWNERS
  2. 5
      .levignore.js

@ -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

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