forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
63 lines (59 loc) · 1.56 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
// https://eslint.org/
module.exports = {
parser: "babel-eslint",
env: {
browser: true,
es6: true,
node: true
},
globals: {
THREE: true,
AFRAME: true,
NAF: true,
APP: true
},
plugins: ["prettier", "react", "react-hooks", "@calm/react-intl"],
// https://eslint.org/docs/rules/
rules: {
// https://github.com/prettier/eslint-plugin-prettier
"prettier/prettier": "error",
"prefer-const": "error",
"no-use-before-define": "error",
"no-var": "error",
"no-throw-literal": "error",
// Light console usage is useful but remove debug logs before merging to master.
"no-console": "off",
// https://www.npmjs.com/package/eslint-plugin-react-hooks
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
// https://github.com/calm/eslint-plugin-react-intl
"@calm/react-intl/missing-formatted-message": [
"error",
{
noTrailingWhitespace: true,
ignoreLinks: true,
enforceLabels: true,
enforceImageAlts: true,
enforceInputProps: false
}
],
"@calm/react-intl/missing-attribute": [
"error",
{
noTrailingWhitespace: true,
noSpreadOperator: true,
requireDescription: false,
formatDefineMessages: true,
requireIdAsString: true,
requireDefaultMessage: true
}
],
"@calm/react-intl/missing-values": "error"
},
extends: [
// https://github.com/prettier/eslint-config-prettier
"prettier",
"plugin:react/recommended",
"eslint:recommended"
]
};