14 lines
405 B
JavaScript
14 lines
405 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["next/core-web-vitals"],
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": ["warn", {
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_"
|
|
}],
|
|
"@typescript-eslint/no-empty-object-type": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"react-hooks/exhaustive-deps": "warn"
|
|
}
|
|
}; |