#Passing eslint arguments via next lint?
2 messages · Page 1 of 1 (latest)
Yes, you can pass the --max-warnings=0 argument to next lint by adding it to the lint script in your package.json file.
Here's an example:
{
"scripts": {
"lint": "next lint --max-warnings=0"
}
}