-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
34 lines (34 loc) · 998 Bytes
/
.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
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "expect-type", "functional"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:expect-type/recommended",
"plugin:functional/all",
],
parserOptions: {
project: "./tsconfig.lint.json",
},
rules: {
"functional/prefer-type-literal": 0,
"functional/no-expression-statement": [
2,
{ ignorePattern: "(describe)|(it)|(expect)|(fc.)" },
],
"@typescript-eslint/array-type": [1, { default: "generic" }],
"@typescript-eslint/strict-boolean-expressions": [
2,
{
/** Unset default (`true`) */
allowString: false,
/** Unset default (`true`) */
allowNumber: false,
/** Unset default (`true`) */
allowNullableObject: false,
},
],
},
}