Skip to content

Commit

Permalink
chore: migrate to eslint v9 (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmstss authored Aug 28, 2024
1 parent 3d50d0e commit 1ba8a1b
Show file tree
Hide file tree
Showing 26 changed files with 588 additions and 686 deletions.
23 changes: 0 additions & 23 deletions .eslintrc.js

This file was deleted.

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

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strict,
{
ignores: ["**/charts", "**/dist", "**/client"],
},
{
rules: {
"@typescript-eslint/no-extraneous-class": ["error", {
allowWithDecorator: true
}]
}
}
);
Loading

0 comments on commit 1ba8a1b

Please sign in to comment.