forked from HackMichiana/sms-location-bot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
68 lines (68 loc) · 1.59 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
{
"env": {
"browser": false,
"node": true,
"es6": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": { "extensions": [".js", ".mjs"] }
}
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"valid-jsdoc": ["error", {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": true,
"requireReturnDescription": true,
"preferType": {
"String": "string",
"object": "Object"
}
}],
"require-jsdoc": ["warn", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}],
"no-var": 1,
"no-eval": "error",
"indent": ["error", 2],
"quotes": ["error", "single"],
"no-console": "off",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}
],
"space-before-function-paren": ["error", "always"],
"padded-blocks": ["error", "never"],
"no-prototype-builtins": "off",
"prefer-arrow-callback": [0, { "allowNamedFunctions": true }],
"func-names": ["error", "never"],
"no-use-before-define": [
"off", {
"functions": false,
"classes": true
}
],
"max-nested-callbacks": [
"error",
5
]
}
}