I am have installed ESlint in out test project and it started to show me few errors that i need to resolve
one of the error is in cy.request(\'someURL\');
T
cy is a global variable. Much like location. So really it is window.cy. You can add it to the globals in Eslint. Don't import cy from cypress.
cy
location
window.cy
{ "globals": { "cy": true } }