Chore: Update version of @grafana/eslint-config (#53403)

* use let/const over var

* use new version of @grafana/eslint-config
This commit is contained in:
Ashley Harrison
2022-08-08 15:19:15 +01:00
committed by GitHub
parent ff8d96602a
commit f1295e4bd0
27 changed files with 99 additions and 83 deletions

View File

@@ -56,7 +56,7 @@ export class OptionSearchEngine {
}
getAllOptionsCount(categories: OptionsPaneCategoryDescriptor[]) {
var total = 0;
let total = 0;
for (const category of categories) {
total += category.items.length;