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 7de87c5
Show file tree
Hide file tree
Showing 2 changed files 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",
},
},
];
];
File renamed without changes.

0 comments on commit 7de87c5

Please sign in to comment.