Skip to content

Commit

Permalink
chore: update dependencies (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyTseng authored Aug 12, 2024
1 parent a65e933 commit daeef78
Show file tree
Hide file tree
Showing 5 changed files with 2,715 additions and 3,324 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

42 changes: 0 additions & 42 deletions .eslintrc.js

This file was deleted.

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


export default [
{ languageOptions: { globals: globals.node } },
{
ignores: [
'**/node_modules',
'**/*.d.ts',
'**/*.js'
],
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.ts"],
rules: {
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
}
},
];
Loading

0 comments on commit daeef78

Please sign in to comment.