-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
47 lines (47 loc) · 967 Bytes
/
.eslintrc
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
{
"extends": [
"airbnb",
"prettier",
"plugin:meteor/recommended",
"@meteorjs/eslint-config-meteor"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [".js", ".jsx"]
}
}
},
"rules": {
"object-curly-newline": 0,
"react/no-unused-prop-types": 0,
"arrow-parens": ["error", "as-needed"],
"import/no-named-as-default": 0,
"comma-dangle": ["error", {
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "ignore"
}],
"function-paren-newline": 0,
"max-len": [
"error",
{
"ignoreStrings": true,
"code": 80,
"ignoreUrls": true
}
],
"prettier/prettier": [
"error",
{
"trailingComma": "none",
"singleQuote": true,
"arrowParens": "avoid"
}
],
"no-console": 0
},
"plugins": ["react", "meteor", "prettier"]
}