Currently, I have eslint configured like this:
{
"extends": "google",
"installedESLint": true
}
When running lint on the following function:
app.get('/', (req, res) => {
console.log(req);
res.send('hello world')
});
I receive the following error:
ESlint: Parsing error: Assigning to rvalue
However, my code functions correctly without any issues.
Could anyone clarify what this error signifies and if there is an issue in my code?