### Description I sometimes forget to add `method: 'POST'` to fetch calls <img width="465" alt="image" src="https://user-images.githubusercontent.com/48261497/203305304-19f9808f-0232-4e25-9596-1ff7bfa1e6a7.png"> ### Fail ```js fetch('http://example.com', { body: '{}' }) ``` ### Pass ```js fetch('http://example.com', { method: 'POST', body: '{}' }) ``` ### Additional Info _No response_