mirror of https://github.com/jkjoy/sunpeiwen.git
26 lines
566 B
Plaintext
26 lines
566 B
Plaintext
|
{
|
||
|
"extends": "airbnb-base",
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"mocha": true,
|
||
|
"worker": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"func-names": 0,
|
||
|
"global-require": 0,
|
||
|
"one-var": 1,
|
||
|
"one-var-declaration-per-line": 1,
|
||
|
"no-restricted-syntax": [0, "ForInStatement"],
|
||
|
"guard-for-in": 0,
|
||
|
"max-len": [1, 120],
|
||
|
"import/no-extraneous-dependencies": 0,
|
||
|
"import/no-dynamic-require": 0,
|
||
|
"import/extensions": 0,
|
||
|
"no-bitwise": 0,
|
||
|
"no-plusplus": 0,
|
||
|
"no-useless-escape": 0,
|
||
|
"import/no-named-default": 0,
|
||
|
"object-curly-newline": 0
|
||
|
}
|
||
|
}
|