Skip to content

Commit ba62c05

Browse files
committed
Simplified eslint config and fixed a few linting errors
1 parent 512f557 commit ba62c05

5 files changed

Lines changed: 77 additions & 448 deletions

File tree

eslint.config.cjs

Lines changed: 0 additions & 48 deletions
This file was deleted.

eslint.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import eslint from '@eslint/js';
2+
import { defineConfig } from 'eslint/config';
3+
import tseslint from 'typescript-eslint';
4+
5+
export default defineConfig([
6+
{
7+
files: ['src/**/*.ts', 'test/**/*.ts'],
8+
extends: [eslint.configs.recommended, tseslint.configs.recommended],
9+
},
10+
]);

0 commit comments

Comments
 (0)