Skip to content

Commit 3d6b94d

Browse files
committed
changing branch
1 parent 1f56d99 commit 3d6b94d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/backend/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const getHooksNames = elementType => {
5454
let ast;
5555
try {
5656
ast = JSXParser.parse(elementType);
57-
} catch(e) {
57+
} catch (e) {
5858
return ['unknown'];
5959
}
6060
const hookState = {};

src/backend/tree.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* eslint-disable no-plusplus */
2+
/* eslint-disable max-len */
3+
/* eslint-disable @typescript-eslint/ban-types */
14
import 'core-js';
25
/* eslint-disable no-multiple-empty-lines */
36
/* eslint-disable max-classes-per-file */
@@ -23,7 +26,7 @@ function serializeState(state) {
2326
return JSON.parse(JSON.stringify(state));
2427
} catch (e) {
2528
return 'circularState';
26-
};
29+
}
2730
}
2831

2932
/**

0 commit comments

Comments
 (0)