2024-07-29 04:41:26 +02:00
|
|
|
import eslint from '@eslint/js';
|
|
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
import prettier from 'eslint-plugin-prettier/recommended';
|
|
|
|
|
|
|
|
export default tseslint.config(
|
|
|
|
eslint.configs.recommended,
|
|
|
|
...tseslint.configs.recommended,
|
|
|
|
prettier,
|
|
|
|
{
|
2024-07-29 21:31:19 +02:00
|
|
|
rules: {'@typescript-eslint/no-require-imports': 0},
|
2024-07-29 04:41:26 +02:00
|
|
|
}
|
|
|
|
)
|