Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
parkrafael committed Nov 26, 2024
1 parent 75bfa22 commit 9870a7f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ import pluginJs from "@eslint/js";

/** @type {import('eslint').Linter.Config[]} */
export default [
{ languageOptions: { globals: globals.node } },
{ languageOptions: { globals: { ...globals.node, ...globals.jest } } },
pluginJs.configs.recommended,
{
rules: {
camelcase: ["warn", { properties: "never", ignoreDestructuring: false }],
"max-len": ["warn", { code: 140 }],
"no-console": "warn",
},
},
];
];

0 comments on commit 9870a7f

Please sign in to comment.