Skip to content

Commit 27ed2a0

Browse files
authored
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
1 parent c946bcd commit 27ed2a0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ lerna.json @grafana/frontend-ops
353353
/lefthook.yml @grafana/frontend-ops
354354
/lefthook.rc @grafana/frontend-ops
355355
.husky/pre-commit @grafana/frontend-ops
356+
.levignore.js @grafana/plugins-platform-frontend
356357

357358

358359
# public folder

.levignore.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
removals: [/FeatureToggles\..*/],
3+
additions: [/FeatureToggles\..*/],
4+
changes: [/FeatureToggles\..*/],
5+
};

0 commit comments

Comments
 (0)