forked from serlo/api.serlo.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
158 lines (155 loc) · 4.69 KB
/
.eslintrc.json
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["tsconfig.json", "tsconfig.eslint.json"]
},
"plugins": ["@typescript-eslint", "import", "react"],
"rules": {
// eslint
"no-duplicate-imports": "error",
"no-unused-vars": "off",
"no-console": "error",
// @typescript-eslint/eslint-plugin
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/ban-types": [
"error",
{
"types": {
"String": {
"message": "Use string instead",
"fixWith": "string"
},
"Boolean": {
"message": "Use boolean instead",
"fixWith": "boolean"
},
"Number": {
"message": "Use number instead",
"fixWith": "number"
},
"Symbol": {
"message": "Use symbol instead",
"fixWith": "symbol"
},
"Object": {
"message": "Use object instead",
"fixWith": "object"
},
"Function": {
"message": "The `Function` type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with `new`.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape."
},
"{}": {
"message": "`{}` actually means \"any non-nullish value\".\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.\n- If you want a type meaning \"empty object\", you probably want `Record<string, never>` instead."
}
},
"extendDefaults": false
}
],
"@typescript-eslint/consistent-type-definitions": ["error", "interface"],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-this-alias": "warn",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_" }
],
"@typescript-eslint/no-use-before-define": [
"error",
{
"classes": false,
"functions": false,
"typedefs": false
}
],
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/prefer-ts-expect-error": "error",
// eslint-plugin-import
"import/export": "error",
"import/extensions": ["error", "never", { "json": "always" }],
"import/first": "error",
"import/newline-after-import": "error",
"import/no-absolute-path": "error",
"import/no-commonjs": "error",
"import/no-cycle": "error",
"import/no-default-export": "error",
"import/no-deprecated": "error",
"import/no-internal-modules": [
"error",
{
"allow": [
"@pact-foundation/pact/src/dsl/matchers",
"msw/node",
"msw/lib/**",
"io-ts/lib/*",
"io-ts-types/lib/*",
"fp-ts/lib/*",
"ts-jest/utils",
"@apollo/server/plugin/disabled",
"@apollo/server/express4"
]
}
],
"import/no-mutable-exports": "error",
"import/no-self-import": "error",
"import/no-unassigned-import": "error",
"import/no-useless-path-segments": [
"error",
{
"noUselessIndex": true
}
],
"import/order": [
"error",
{
"alphabetize": {
"order": "asc"
},
"groups": [
["builtin", "external", "internal"],
["parent", "sibling", "index", "unknown"]
],
"newlines-between": "always"
}
],
// eslint-plugin-react
"react/jsx-boolean-value": "error",
"react/jsx-curly-brace-presence": "error",
"react/prop-types": "off"
},
"settings": {
"react": {
"pragma": "h",
"version": "16.8"
}
},
"overrides": [
{
"files": [
"__fixtures__/**/*",
"__tests-pacts__/**/*",
"__tests__/**/*",
"jest.setup.ts",
"jest.setup-pacts.ts"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"import/no-extraneous-dependencies": "off"
}
}
]
}