mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
22 lines
528 B
Plaintext
22 lines
528 B
Plaintext
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": ["airbnb-base", "prettier"],
|
|
"plugins": ["prettier", "import"],
|
|
"rules": {
|
|
"comma-dangle": 0,
|
|
"indent": 2,
|
|
"func-names": 0,
|
|
"max-len": [1, 120, 2],
|
|
"no-cond-assign": ["error", "except-parens"],
|
|
"no-use-before-define": ["warn"],
|
|
"no-param-reassign": 0,
|
|
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
|
|
"strict": 1,
|
|
"import/no-extraneous-dependencies": 1
|
|
}
|
|
}
|