forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
66 lines (65 loc) · 1.69 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
// https://eslint.org/
module.exports = {
parser: "@babel/eslint-parser",
env: {
browser: true,
es6: true,
node: true
},
globals: {
THREE: true,
AFRAME: true,
NAF: true,
APP: true
},
settings: {
react: {
version: "detect"
}
},
plugins: ["prettier", "react", "react-hooks", "@calm/react-intl"],
// https://eslint.org/docs/rules/
rules: {
"prettier/prettier": "error",
// https://github.com/prettier/eslint-plugin-prettier
"prefer-const": "error",
"no-use-before-define": "error",
"no-var": "error",
"no-throw-literal": "error",
"no-unused-vars": [
"error",
{
destructuredArrayIgnorePattern: "^_"
}
],
// 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": "error",
// 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: ["prettier", "plugin:react/recommended", "eslint:recommended", "plugin:storybook/recommended"]
};