2024-12-10 20:57:52 +05:30
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
|
|
import eslint from '@eslint/js';
|
|
|
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
|
|
|
|
|
|
export default tseslint.config(
|
|
|
|
|
eslint.configs.recommended,
|
|
|
|
|
tseslint.configs.recommended,
|
2024-12-18 15:08:10 +05:30
|
|
|
{
|
|
|
|
|
rules: {
|
|
|
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-12-10 20:57:52 +05:30
|
|
|
);
|