-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
99 lines (99 loc) · 2.91 KB
/
index.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
module.exports = {
extends: [
"airbnb-typescript",
"plugin:promise/recommended",
"plugin:react-hooks/recommended",
"prettier",
],
parserOptions: {
project: "./tsconfig.json",
},
env: {
es2020: true,
},
globals: {},
plugins: [
"@typescript-eslint",
"chai-friendly",
"import",
"jsx-a11y",
"mocha-no-only",
"only-warn",
"promise",
"react",
"react-hooks",
],
ignorePatterns: ["**/*.html"],
rules: {
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-floating-promises": "warn",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/object-curly-spacing": "off",
"@typescript-eslint/return-await": "off",
"arrow-body-style": "off",
"chai-friendly/no-unused-expressions": [
"warn",
{ allowShortCircuit: true },
],
"class-methods-use-this": "off",
"default-case": "off",
"func-names": "off",
"global-require": "off",
"import/no-cycle": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": [
"warn",
{
devDependencies: [
"**/*.spec.js",
"gulpfile.ts/*.ts",
"**/webpack.config.ts",
],
},
],
"import/prefer-default-export": "off",
"max-classes-per-file": "off",
"max-len": "off",
"mocha-no-only/mocha-no-only": "warn",
"no-await-in-loop": "off",
"no-console": "off",
"no-continue": "off",
"no-empty": ["warn", { allowEmptyCatch: true }],
"no-nested-ternary": "off",
"no-param-reassign": "off",
"no-plusplus": ["warn", { allowForLoopAfterthoughts: true }],
"no-prototype-builtins": "off",
"no-restricted-syntax": [
"warn",
{
selector: "ForInStatement",
message:
"for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.",
},
{
selector: "LabeledStatement",
message:
"Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.",
},
{
selector: "WithStatement",
message:
"`with` is disallowed in strict mode because it makes code impossible to predict and optimize.",
},
],
"no-return-await": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-use-before-define": "off",
"no-void": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"promise/always-return": "off",
radix: "off",
"require-await": "off",
"valid-typeof": "off",
},
};