Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ronjouch committed Aug 6, 2024
1 parent 48f6278 commit 94c8454
Show file tree
Hide file tree
Showing 9 changed files with 325 additions and 366 deletions.
29 changes: 0 additions & 29 deletions .eslintrc.js

This file was deleted.

29 changes: 29 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
ignores: [
'**/node_modules',
'**/dist',
'**/coverage',
],
},
{
rules: {
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-unused-vars': 0,
},
},
{
rules: {
'@typescript-eslint/no-unused-expressions': 0,
},
files: [
'test/*'
]
}
);
Loading

0 comments on commit 94c8454

Please sign in to comment.