This repository has been archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
79 lines (79 loc) · 1.75 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
74
75
76
77
78
79
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "./tsconfig.json",
ecmaVersion: 2018,
sourceType: "module",
},
extends: [
"typed-fp",
"plugin:react/recommended",
"plugin:sonarjs/recommended",
"plugin:jsx-a11y/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended",
],
env: {
"jest/globals": true,
es6: true,
browser: true,
},
plugins: [
"jest",
"react",
"sonarjs",
"functional",
"jsx-a11y",
"react-hooks",
"@typescript-eslint",
"prettier",
"total-functions",
],
rules: {
// https://reactjs.org/docs/hooks-rules.html
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
// Don't need prop types when you have... actual types
"react/prop-types": 0,
"@typescript-eslint/ban-types": [
"error",
{
types: {
// https://github.com/danielnixon/readonly-types
URL: {
fixWith: "ReadonlyURL",
},
URLSearchParams: {
fixWith: "ReadonlyURLSearchParams",
},
Date: {
fixWith: "ReadonlyDate",
},
// https://github.com/pelotom/type-zoo
Omit: {
fixWith: "OmitStrict",
},
Exclude: {
fixWith: "ExcludeStrict",
},
},
},
],
"no-restricted-globals": [
"error",
// Browser globals
{ name: "document" },
{ name: "window" },
{ name: "navigator" },
// https://github.com/danielnixon/readonly-types
{ name: "URL" },
{ name: "URLSearchParams" },
{ name: "Date" },
],
},
settings: {
react: {
version: "detect",
},
},
};