forked from leather-io/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
105 lines (102 loc) · 3.07 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
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
104
105
const avoidWindowOpenMsg = 'Use `openInNewTab` helper';
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
env: {
browser: true,
node: true,
es6: true,
},
globals: {
page: true,
browser: true,
context: true,
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
plugins: ['react', 'react-hooks', '@typescript-eslint', 'deprecation'],
rules: {
// This rule helps highlight areas of the code that use deprecated
// methods, such as implicit use of signed transactions
'deprecation/deprecation': 'warn',
'no-console': ['error'],
'prefer-const': [
'error',
{
ignoreReadBeforeAssign: false,
},
],
'no-restricted-globals': ['error', { name: 'open', message: avoidWindowOpenMsg }],
'no-restricted-properties': [
'error',
{
object: 'window',
property: 'open',
message: avoidWindowOpenMsg,
},
{
object: 'globalThis',
property: 'open',
message: avoidWindowOpenMsg,
},
],
'@typescript-eslint/no-floating-promises': ['warn'],
'@typescript-eslint/no-unnecessary-type-assertion': ['warn'],
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-unsafe-assignment': [0],
'@typescript-eslint/no-unsafe-return': [0],
'@typescript-eslint/no-unsafe-call': [0],
'@typescript-eslint/no-unsafe-member-access': [0],
'@typescript-eslint/restrict-template-expressions': [0],
'@typescript-eslint/explicit-module-boundary-types': [0],
'@typescript-eslint/no-unnecessary-type-constraint': ['off'],
'@typescript-eslint/no-non-null-asserted-optional-chain': ['off'],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/no-meaningless-void-operator': 'error',
'@typescript-eslint/ban-types': ['error'],
// This rule is off until we can enable tsconfig noUncheckedIndexedAccess
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
'no-warning-comments': [0],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': ['error'],
'react/function-component-definition': 'error',
'react/display-name': 'off',
'react/prop-types': 'off',
'react/no-unescaped-entities': 'off',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
},
overrides: [
{
files: ['test/**', 'src/**/*.spec.ts'],
rules: {
'no-console': [0],
},
},
{
files: ['src/**/*'],
excludedFiles: 'src/app/store/**',
rules: {
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'react-redux',
importNames: ['useSelector'],
message: 'Selectors must be expored from the store via a hook',
},
],
},
],
},
},
],
};