atom-deploy/.eslintrc.cjs
2025-05-02 16:05:48 -04:00

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"
}
};