-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
103 lines (103 loc) · 2.79 KB
/
.eslintrc.cjs
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:unicorn/recommended',
'plugin:import/warnings',
'plugin:regexp/recommended',
'plugin:etc/recommended',
'plugin:promise/recommended',
'plugin:prettier/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2022,
project: 'tsconfig.json',
sourceType: 'module',
ecmaFeatures: {
jsx: false,
},
warnOnUnsupportedTypeScriptVersion: false,
},
plugins: [
'unicorn',
'import',
'wix-editor',
'@typescript-eslint',
'prettier',
'simple-import-sort',
'etc',
'promise',
'only-warn',
],
ignorePatterns: ['@generated/**', '*.config.js', '.*rc.js'],
rules: {
// core
'consistent-return': [1, { treatUndefinedAsUnspecified: true }],
quotes: [1, 'single', { allowTemplateLiterals: true, avoidEscape: true }],
semi: [1, 'always'],
'max-lines': [1, { max: 300 }],
'max-params': [1, { max: 5 }],
'no-unneeded-ternary': [1],
// wix-editor
'wix-editor/no-instanceof-array': 1,
'wix-editor/no-not-not': 1,
'wix-editor/no-unneeded-match': 1,
'wix-editor/prefer-filter': 1,
'wix-editor/prefer-ternary': 1,
'wix-editor/return-boolean': 1,
'wix-editor/simplify-boolean-expression': 1,
// unicorn
'unicorn/prefer-spread': 0,
'unicorn/catch-error-name': 0,
'unicorn/prefer-node-protocol': 0,
'unicorn/prevent-abbreviations': [
1,
{
replacements: {
args: false,
err: false,
prod: false,
ref: false,
params: false,
},
},
],
// import
'import/max-dependencies': [1, { max: 15 }],
// simple-import-sort with recomended settings
'simple-import-sort/imports': 1,
'simple-import-sort/exports': 1,
'sort-imports': 0,
'import/first': 1,
'import/newline-after-import': 1,
'import/no-duplicates': 1,
// typescript-eslint
'@typescript-eslint/no-floating-promises': 1,
'@typescript-eslint/no-unnecessary-condition': 1,
'@typescript-eslint/no-explicit-any': [1, { ignoreRestArgs: true }],
},
overrides: [
{
files: ['*.spec.ts', '**/testing/**/*.ts'],
rules: {
'unicorn/prefer-module': 0,
'@typescript-eslint/no-unsafe-call': 0,
'consistent-return': 0,
'max-lines': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-floating-promises': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/camelcase': 0,
'import/max-dependencies': 0,
},
},
],
};