We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f56d99 commit 3d6b94dCopy full SHA for 3d6b94d
src/backend/helpers.js
@@ -54,7 +54,7 @@ export const getHooksNames = elementType => {
54
let ast;
55
try {
56
ast = JSXParser.parse(elementType);
57
- } catch(e) {
+ } catch (e) {
58
return ['unknown'];
59
}
60
const hookState = {};
src/backend/tree.ts
@@ -1,3 +1,6 @@
1
+/* eslint-disable no-plusplus */
2
+/* eslint-disable max-len */
3
+/* eslint-disable @typescript-eslint/ban-types */
4
import 'core-js';
5
/* eslint-disable no-multiple-empty-lines */
6
/* eslint-disable max-classes-per-file */
@@ -23,7 +26,7 @@ function serializeState(state) {
23
26
return JSON.parse(JSON.stringify(state));
24
27
} catch (e) {
25
28
return 'circularState';
- };
29
+ }
30
31
32
/**
0 commit comments