Skip to content

Commit c122688

Browse files
committed
fix lint
1 parent 5c15b08 commit c122688

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/featureProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ export class ConfigurationObjectFeatureFlagProvider implements IFeatureFlagProvi
6464
validateFeatureFlag(featureFlag);
6565
return featureFlag;
6666
}
67-
}
67+
}

src/schema/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@ export interface FeatureManagementConfiguration {
172172
*/
173173
export interface FeatureManagement {
174174
feature_flags: FeatureFlag[];
175-
}
175+
}

src/schema/validator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ function validateTelemetryOptions(telemetry: any) {
183183
throw new TypeError("Telemetry 'metadata' must be an object.");
184184
}
185185
}
186-
// #endregion
186+
// #endregion

test/featureManager.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ describe("feature manager", () => {
141141

142142
it("should evaluate features with conditions");
143143
it("should override default filters with custom filters");
144-
});
144+
});

test/noFilters.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ describe("feature flags with no filters", () => {
6767
expect(featureManager.isEnabled("EmptyConditions")).eventually.eq(true)
6868
]);
6969
});
70-
});
70+
});

0 commit comments

Comments
 (0)