You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'unicorn/no-new-array': 'off',// In contradiction with unicorn/new-for-builtins: Use `new Array()` instead of `Array()`
'unicorn/no-null': 'off',// We don't know the impact on mxGraph code
'unicorn/no-useless-undefined': 'off',// The "undefined" value is useful where we use it and change some mxGraph code
'unicorn/prefer-global-this': 'off',// We only target the browser, so it is valid to use the window object. In addition, using 'globalThis' require changes in the code.