Skip to content

Commit 6e3797f

Browse files
committed
fix: lint
1 parent a5e1fd0 commit 6e3797f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app-config-extensions/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ describe('$hidden directive', () => {
258258
},
259259
});
260260

261-
expect(await source.readToJSON([hiddenDirective(), extendsSelfDirective()])).toEqual({
261+
expect(await source.readToJSON([extendsSelfDirective(), hiddenDirective()])).toEqual({
262262
foo: 42,
263263
});
264264
});

app-config-extensions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export function eqDirective(): ParsingExtension {
120120

121121
/** Prpoerties that are removed, used by references */
122122
export function hiddenDirective(): ParsingExtension {
123-
return forKey('$hidden', (value) => async (parse) => {
123+
return forKey('$hidden', () => async (parse) => {
124124
return parse({}, { shouldMerge: true });
125125
});
126126
}

0 commit comments

Comments
 (0)