FIX linting

This commit is contained in:
Norbert de Langen 2020-03-13 11:14:36 +01:00
parent 7d11d6035e
commit edf4f2ba9f
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 5 additions and 3 deletions

View File

@ -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,
};
};

View File

@ -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 />