forked from kenlimmj/rouge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.mjs
51 lines (49 loc) · 1.48 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from 'eslint-config-prettier';
import jest from 'eslint-plugin-jest';
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ['**/*.ts'],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: './tsconfig.json',
},
},
plugins: {
'@typescript-eslint': tseslint.plugin,
},
rules: {
// TypeScript specific rules
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-non-null-assertion': 'warn',
// General JavaScript/TypeScript rules
'no-console': 'warn',
'eqeqeq': ['error', 'always'],
'curly': ['error', 'all'],
'prefer-const': 'error',
'no-var': 'error',
'object-shorthand': 'error',
'prefer-template': 'error',
'no-useless-escape': 0,
'prefer-destructuring': ['error', { 'object': true, 'array': false }],
},
},
eslintConfigPrettier,
{
files: ['test/**/*.ts', 'test/**/*.js'],
...jest.configs['flat/recommended'],
rules: {
...jest.configs['flat/recommended'].rules,
'jest/prefer-expect-assertions': 'off',
},
},
{
ignores: ['dist/**', 'jest.config.js', '**/*.d.ts', '**/*.js', 'test/**.ts']
},
);