Skip to content

Commit

Permalink
conf: enforce consistent function style
Browse files Browse the repository at this point in the history
  • Loading branch information
ComradeVanti committed Jan 13, 2024
1 parent 0437a9c commit 6bcbac1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 6bcbac1

Please sign in to comment.