-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
73 lines (72 loc) · 2.28 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
module.exports = {
root: true,
parser: "@babel/eslint-parser",
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
requireConfigFile: false,
},
plugins: ["no-unsanitized", "prettier"],
extends: ["eslint:recommended", "plugin:no-unsanitized/DOM", "prettier"],
rules: {
semi: "warn",
"no-console": "off",
"no-shadow": "warn",
"require-atomic-updates": "off",
},
env: {
node: true,
es6: true,
browser: true,
jasmine: true,
jest: true,
},
overrides: [
{
files: ["**/*.ts", "**/*.tsx"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
project: "./tsconfig.json",
},
plugins: ["@typescript-eslint", "no-unsanitized", "prettier"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:no-unsanitized/DOM",
"prettier",
],
rules: {
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
// TODO no-explicit-any really should be enabled
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/array-type": ["error", { default: "array-simple" }],
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-use-before-define": [
"error",
{ functions: false, typedefs: false, variables: false },
],
// TODO explicit-function-return-type really should be enabled
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
ignoreRestSiblings: true,
},
],
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-empty-function": "off",
// TODO explicit-module-boundary-types should be enabled
"@typescript-eslint/explicit-module-boundary-types": "off",
// https://github.com/typescript-eslint/typescript-eslint/issues/60
"no-redeclare": "off",
"no-inner-declarations": "off",
"no-dupe-class-members": "off",
},
},
],
};