forked from input-output-hk/cardano-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
78 lines (78 loc) · 2.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
env: {
jest: true
},
extends: [
'@atixlabs/eslint-config/configurations/node',
'plugin:@typescript-eslint/recommended',
'plugin:jsdoc/recommended'
],
parser: '@typescript-eslint/parser',
plugins: ['jsdoc', 'sort-keys-fix', 'sort-imports-es6-autofix', 'jest'],
root: true,
rules: {
'@typescript-eslint/ban-types': 0,
// covered by unicorn/prefer-module
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
// needed for inference from type guards
'@typescript-eslint/no-var-requires': 0,
// typescript checks return types
camelcase: 0,
'consistent-return': 0,
'import/no-extraneous-dependencies': ['error', { devDependencies: ['**/test/**/*.ts'] }],
// eslint compains about TS enums hence disable here and enable @typescript-eslint/no-shadow
'import/no-unresolved': 0,
'jsdoc/require-jsdoc': 0,
'jsdoc/require-param': 0,
'jsdoc/require-param-type': 0,
'jsdoc/require-returns': 0,
'jsdoc/require-returns-type': 0,
'linebreak-style': [2, 'unix'],
'new-cap': 0,
'no-magic-numbers': 0,
'no-restricted-imports': [
'error',
{
paths: ['lodash'],
patterns: ['@cardano-sdk/*/src/*']
}
],
'no-shadow': 'off',
'no-unused-expressions': 'off',
'no-unused-vars': 0,
'no-useless-constructor': 0,
'promise/avoid-new': 0,
quotes: ['error', 'single', { avoidEscape: true }],
'sort-imports': ['warn', { ignoreDeclarationSort: true }],
'sort-imports-es6-autofix/sort-imports-es6': 'warn',
'max-len': [
'warn',
{
code: 120, // Keep the existing max line length of 120
ignoreComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true
}
],
'sort-keys-fix/sort-keys-fix': ['warn', 'asc', { natural: true }],
'template-tag-spacing': 0,
'unicorn/filename-case': 0,
'unicorn/no-array-callback-reference': 0,
'unicorn/no-array-reduce': 0,
'unicorn/no-nested-ternary': 0,
'unicorn/no-null': 0,
'unicorn/prefer-module': 0,
'unicorn/prefer-node-protocol': 0,
'unicorn/prevent-abbreviations': 0
},
settings: {
'import/resolver': {
typescript: {}
}
}
};