This commit is contained in:
Norbert de Langen 2022-11-15 20:42:46 +01:00
parent a4ac8b942c
commit a38734c81b
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,6 @@ export const hrefTo = (title: ComponentTitle, name: StoryName): Promise<string>
});
};
// eslint-disable-next-line @typescript-eslint/no-shadow
const valueOrCall = (args: string[]) => (value: string | ((...args: string[]) => string)) =>
typeof value === 'function' ? value(...args) : value;

View File

@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-shadow */
import webpack from 'webpack';
import { logger } from '@storybook/node-logger';
import { BuilderContext, Target, targetFromTargetString } from '@angular-devkit/architect';