-
Notifications
You must be signed in to change notification settings - Fork 19
/
.eslintrc
46 lines (46 loc) · 1.22 KB
/
.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
{
"plugins": [ "joyent" ],
"extends": [
"eslint:recommended",
"plugin:joyent/style",
"plugin:joyent/lint"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "script",
"ecmaFeatures": {
}
},
"env": {
"node": true,
"es6": true
},
"rules": {
// Local rule configuration
"no-unused-vars": [
"error",
{
// Track all unused identifiers
"vars": "all",
"args": "all",
"caughtErrors": "all",
// Don't warn on args that start with _, res or req.
// Added stdout and stderr to the standard joyent set.
"argsIgnorePattern": "^(_|res|req|stdout|stderr)",
// Don't warn on catch or var identifiers that start with _
"caughtIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"max-len": [
"error",
80,
{
"tabWidth": 8,
"ignoreComments": false,
"ignoreTrailingComments": false,
"ignoreUrls": true
}
],
}
}