Revert "fix lint"

This reverts commit 377ac6a79c.
This commit is contained in:
yuqiuw
2021-06-10 11:36:31 -05:00
committed by GitHub
parent 5f66817b36
commit d59ee4e679
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars, no-mixed-operators, strict*/
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/
"use strict";
var $protobuf = require("protobufjs/minimal");
+1 -1
View File
@@ -54,7 +54,7 @@ export function isProtoEnabled(): boolean {
}
export function isProtoEligible(url: string) {
for (let value of Object.values(kindMap)) {
for (let [key, value] of Object.entries(kindMap)) {
if (url.includes(value.path)) {
return true;
}