mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
29 lines
513 B
Plaintext
29 lines
513 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"strict": [0],
|
|
"eqeqeq": 2,
|
|
"quotes": [2, "single"],
|
|
"no-underscore-dangle": 0,
|
|
"eol-last": 0,
|
|
"camelcase": 0,
|
|
"no-loop-func": 0,
|
|
"no-trailing-spaces": 0,
|
|
"consistent-return": 0,
|
|
"new-cap": 0,
|
|
"no-shadow": 0,
|
|
//"semi": 0,
|
|
"no-process-exit": 0,
|
|
"no-empty": 0,
|
|
"yoda": 0,
|
|
"no-new-func": 0
|
|
},
|
|
"globals": {
|
|
"think": true,
|
|
"thinkCache": true
|
|
}
|
|
} |