log4js-node/.eslintrc
e-cloud 3e4f3a66f3 style: format test code
a error occur in `loggin-test.js` - 'invalid configuration'.

It may reveal some internal defects of this library.

Another problem occurs in `configureNoLevels-test.js`. I mark a
**todo** there.
2016-12-12 22:23:39 +08:00

21 lines
384 B
Plaintext

{
"root": true,
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"indent": 2,
"object-shorthand": 0,
"func-names": 0,
"max-len": [1, 120, 2],
"no-use-before-define": 1,
"no-param-reassign": 0,
"strict": 0,
"import/no-extraneous-dependencies": 1,
"prefer-spread": 0,
"prefer-rest-params": 0
},
"parser-options": {
"ecmaVersion": 6
}
}