diff --git a/.eslintrc.js b/.eslintrc.js index 74c149dc..cdf67282 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,6 +11,7 @@ module.exports = { rules: { "no-console": process.env.NODE_ENV === "production" ? "error" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", + "func-style": ["error", "declaration", { allowArrowFunctions: true }], }, parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint"],