Skip to content

Commit

Permalink
Updated NPM dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ckulka committed Jan 22, 2025
1 parent fd90e6b commit f0e8d6d
Show file tree
Hide file tree
Showing 3 changed files with 821 additions and 609 deletions.
18 changes: 16 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
import tseslint from "typescript-eslint";
import eslintConfigPrettier from "eslint-config-prettier";
import eslintConfigPrettier, { rules } from "eslint-config-prettier";

export default [...tseslint.configs.recommended, eslintConfigPrettier];
export default [
...tseslint.configs.recommended,
eslintConfigPrettier,
// Chai assertion friendly configuration
{
rules: [
{
files: ["*.test.js", "*.spec.js"],
rules: {
"no-unused-expressions": "off",
},
},
],
},
];
Loading

0 comments on commit f0e8d6d

Please sign in to comment.