diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 5fcc3ec..6435dff 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,10 +1,11 @@ +/** @type {import("eslint").Linter.Config} */ module.exports = { root: true, env: { browser: true, es2020: true }, extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended", - "plugin:react-hooks/recommended", + "plugin:react-hooks/recommended" ], ignorePatterns: ["dist", ".eslintrc.cjs"], parser: "@typescript-eslint/parser", @@ -14,7 +15,7 @@ module.exports = { "@typescript-eslint/no-explicit-any": "off", "react-refresh/only-export-components": [ "warn", - { allowConstantExport: true }, - ], - }, + { allowConstantExport: true } + ] + } };