-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
79 lines (79 loc) · 1.26 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"globals": {
"AUI": true,
"FARO_ENV": true,
"Liferay": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"allowImportExportEverywhere": true,
"experimentalObjectRestSpread": true,
"jsx": true
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"comma-dangle": 0,
"eol-last": [
2,
"never"
],
"indent": [2, 2],
"max-len": 0,
"new-cap": [
2,
{
"capIsNew": false
}
],
"no-console": 0,
"no-undef": 2,
"no-underscore-dangle": [
2,
{
"allowAfterThis": true,
"enforceInMethodNames": true
}
],
"no-unused-vars": [
2,
{
"args": "after-used",
"ignoreRestSiblings": false,
"vars": "all"
}
],
"object-shorthand": 2,
"prefer-const": 2,
"prefer-template": 2,
"quote-props": [2, "as-needed"],
"quotes": [2, "single", "avoid-escape"],
"react/jsx-boolean-value": 2,
"react/jsx-handler-names": 0,
"react/jsx-key": 2,
"react/jsx-no-bind": 2,
"react/jsx-sort-props": 2,
"react/jsx-uses-vars": 2,
"require-jsdoc": 0,
"sort-keys": [
2,
"asc",
{
"caseSensitive": false
}
],
"sort-vars": 2,
"valid-jsdoc": 0
}
}