diff --git a/expressions/src/features.test.ts b/expressions/src/features.test.ts index 307616a..6694141 100644 --- a/expressions/src/features.test.ts +++ b/expressions/src/features.test.ts @@ -51,10 +51,7 @@ describe("FeatureFlags", () => { it("returns all features when all is enabled", () => { const flags = new FeatureFlags({all: true}); - expect(flags.getEnabledFeatures()).toEqual([ - "missingInputsQuickfix", - "blockScalarChompingWarning" - ]); + expect(flags.getEnabledFeatures()).toEqual(["missingInputsQuickfix", "blockScalarChompingWarning"]); }); }); }); diff --git a/expressions/src/features.ts b/expressions/src/features.ts index 7bd5481..b0a0770 100644 --- a/expressions/src/features.ts +++ b/expressions/src/features.ts @@ -39,10 +39,7 @@ export type ExperimentalFeatureKey = Exclude; * All known experimental feature keys. * This list must be kept in sync with the ExperimentalFeatures interface. */ -const allFeatureKeys: ExperimentalFeatureKey[] = [ - "missingInputsQuickfix", - "blockScalarChompingWarning" -]; +const allFeatureKeys: ExperimentalFeatureKey[] = ["missingInputsQuickfix", "blockScalarChompingWarning"]; export class FeatureFlags { private readonly features: ExperimentalFeatures;