-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
46 lines (41 loc) · 1.04 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
import functional from 'eslint-plugin-functional'
import prettier from 'eslint-config-prettier'
import tsParser from '@typescript-eslint/parser'
import js from '@eslint/js'
import tseslint from 'typescript-eslint'
export default [
{
ignores: ['**/node_modules', '**/dist', 'src/env.d.ts'],
},
js.configs.recommended,
functional.configs.all,
tseslint.configs.eslintRecommended,
...tseslint.configs.recommended,
prettier,
{
languageOptions: {
globals: {},
parser: tsParser,
ecmaVersion: 5,
sourceType: 'script',
parserOptions: {
project: 'tsconfig.json',
},
},
rules: {
'functional/prefer-immutable-types': 'off',
'functional/no-expression-statements': 'warn',
},
},
{
files: ['**/*.test.ts'],
rules: {
'functional/no-expression-statements': 'off',
'functional/prefer-immutable-types': 'off',
'functional/functional-parameters': 'off',
'functional/no-return-void': 'off',
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
},
]