-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (41 loc) · 1.02 KB
/
.eslintrc.js
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
/* eslint-disable functional/immutable-data */
/* eslint-disable functional/no-expression-statement */
module.exports = {
root: true,
env: {
'es6': true
},
settings: {
'import/resolver': {
node: {
extensions: ['.ts', '.tsx'],
paths: ['./lib'],
}
}
},
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json'
},
plugins: [
'@typescript-eslint',
'functional',
'import'
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:functional/external-typescript-recommended',
'plugin:functional/stylistic',
'plugin:import/errors',
'plugin:import/typescript',
'plugin:import/warnings'
],
rules: {
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
'functional/functional-parameters': 'off',
'functional/prefer-readonly-type': 'off'
},
};