commerce/eslintrc.js
2023-11-16 16:26:11 +01:00

24 lines
441 B
JavaScript

module.exports = {
extends: ["next", "prettier"],
plugins: ["unicorn"],
rules: {
"no-unused-vars": [
"error",
{
args: "after-used",
caughtErrors: "none",
ignoreRestSiblings: true,
vars: "all",
},
],
"prefer-const": "error",
"react-hooks/exhaustive-deps": "error",
"unicorn/filename-case": [
"error",
{
case: "kebabCase",
},
],
},
};