forked from samhh/fp-ts-std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
30 lines (30 loc) · 1.05 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
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "functional"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:functional/all",
],
parserOptions: {
project: "./tsconfig.json",
},
rules: {
"functional/prefer-tacit": 2,
"functional/no-expression-statement": [
2,
{ ignorePattern: "(describe)|(it)|(expect)|(fc.)|(laws.)" },
],
// Tripped in Jest suites
"functional/no-return-void": [2, { ignoreImplicit: true }],
"functional/prefer-readonly-type": 0,
"functional/functional-parameters": 0,
"@typescript-eslint/prefer-regexp-exec": 0,
"@typescript-eslint/array-type": [1, { default: "generic" }],
// We'll have unused vars when testing types via declarations. This allows
// them when prefixed with an underscore.
"@typescript-eslint/no-unused-vars": [1, { varsIgnorePattern: "^_" }],
},
}