mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
FIX linting
This commit is contained in:
parent
7d11d6035e
commit
edf4f2ba9f
@ -23,13 +23,13 @@ export const init: ModuleFn = ({ store, fullAPI }) => {
|
||||
globalArgs: {},
|
||||
};
|
||||
|
||||
const init = () => {
|
||||
const initModule = () => {
|
||||
fullAPI.on(GLOBAL_ARGS_UPDATED, (globalArgs: Args) => store.setState({ globalArgs }));
|
||||
};
|
||||
|
||||
return {
|
||||
api,
|
||||
state,
|
||||
init,
|
||||
init: initModule,
|
||||
};
|
||||
};
|
||||
|
@ -105,7 +105,7 @@ const ErrorDetail = styled.em(({ theme }) => ({
|
||||
}));
|
||||
|
||||
const firstLineRegex = /(Error): (.*)\n/;
|
||||
const linesRegex = /at (?:(.*)\ )?\(?(.+)\)?/;
|
||||
const linesRegex = /at (?:(.*) )?\(?(.+)\)?/;
|
||||
const ErrorFormatter: FunctionComponent<{ error: Error }> = ({ error }) => {
|
||||
const input = error.stack.toString();
|
||||
const [, type, name] = input.match(firstLineRegex);
|
||||
@ -125,12 +125,14 @@ const ErrorFormatter: FunctionComponent<{ error: Error }> = ({ error }) => {
|
||||
<br />
|
||||
{lines.map((l, i) =>
|
||||
l.name ? (
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
<Fragment key={i}>
|
||||
{' '}at <ErrorImportant>{l.name}</ErrorImportant> (
|
||||
<ErrorDetail>{l.location}</ErrorDetail>)
|
||||
<br />
|
||||
</Fragment>
|
||||
) : (
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
<Fragment key={i}>
|
||||
{' '}at <ErrorDetail>{l.location}</ErrorDetail>
|
||||
<br />
|
||||
|
Loading…
x
Reference in New Issue
Block a user