Hey thanks for the plugin, it's so useful ! I recently updated to v56 and was surprised about the autofix It's very common to have ```js const isServer = typeof window === 'undefined'; const isBrowser = typeof window !== 'undefined' ``` It fixes to ```js const isServer = typeof globalThis === 'undefined'; const isBrowser = typeof globalThis !== 'undefined'; ``` Which isn't valid Interested to know your advices. PS: Thanks to @fregant comment below: `window' in globalThis`