Gökhan Kurt
Gökhan Kurt
> [@KurtGokhan](https://github.com/KurtGokhan) > > You would use `source.fixAll.biome`. That's also what I thought when I first read the docs. But as you can see in my video above, that setting...
I understand the issue. [#6859](https://github.com/biomejs/biome/issues/6859) explains it well. But whether the applied fixes are safe or unsafe, I would expect it to not break the source code. I think "unsafe"...
Based on all conversation in this and the other issue, I did some changes to avoid the problem. I removed all `quickfix...` and `source.organizeImports...` from my settings. I just have...
@florianmatz as I see `source.fixAll.biome` also organizes imports, so I don't need to add `source.organizeImports.biome`. I don't think it's harmful though.
[Here](https://playground.react.dev/#N4Igzg9grgTgxgUxALhASwLYAcIwC4AEwBUYCAogGaUJx4A0JZVNd5AbggHaEC+BlGBAwEA5DAQBDOqIDcAHS6KEADxz4BULnTQQuBAIJYsACgCURRQQJw9YQvcl4EBALxMEAZTxOEAdQALNDgAgFlJAE8AIQQAOSgAGwSDPAAxNBh7cwUlfRs7Qj0AYT1KDJF3UgpqWjwObjwTczcAPks861suSASEADoEiABzE0dnPud7MysCXjMcmYk8WH0AHgAjKDw8PQJihOCAa1dgYtLy3haSrjKYDFWAek3tvRac3kVFSi0dXarvXyBYJhSIxeJJFLpTKNCzAGZdewEADaYwQjDIeABzgAum4PFiECYuIkEvNPnkqixak0LK42nCOvluoQApIuAATXp4jEAFUwCGgjWadIIGIJJmIkzwyDEAAkEEkIKJZmYyYylisCMK2uwIGh2TZepIYHyMAKtiZWRzemrrLxGEjsWrFghljB9Kj3iB6CAumUhih0NhcIQ8BEsC5iAAFBJQIZoLgAeSweF03VmAiEIlE60k6wVAFosLH41wCxJpHgC7ZsGhejAHuy0PY5OSJTMHg8a1g60406EIOyEDL5CBJElR4p+GA+2AyggwAQY3GE8nU3Z5t7wAEIAB3ACSPAQ7vHYBQlFPCF4QA) is a minimal code example I created for this bug. Basically: ```js export function App() { const state = useStateWhichMayBeNullAtFirst(); const onConfirm = useEffectEvent(() => { console.log(state.test) }); return...
> If a value is nullable, type systems like TypeScript or Flow would require you to guard against that I understand that, and in fact we had this issue because...