fix: add eslint-plugin-sonarjs and rules (#2767)

(cherry picked from commit 3996955e3b)
This commit is contained in:
LongYinan
2023-06-14 10:45:14 +08:00
committed by Alex Yang
parent ef7fd194c4
commit c8a1391dd8
8 changed files with 50 additions and 35 deletions
@@ -109,7 +109,7 @@ const EditorWrapper = memo(function EditorWrapper({
);
const disposes = uiDecorators.map(ui => ui(editor));
return () => {
disposes.map(fn => fn());
disposes.forEach(fn => fn());
dispose();
};
},