mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"rules": {
|
|
"apply-optional-chaining": "on"
|
|
},
|
|
"ignore": [
|
|
"fixture*",
|
|
"app.json",
|
|
"fontello.json"
|
|
],
|
|
"match": {
|
|
"*.md": {
|
|
"convert-commonjs-to-esm": "on"
|
|
},
|
|
".webpack": {
|
|
"webpack": "on"
|
|
},
|
|
"server": {
|
|
"remove-process-exit": "on"
|
|
},
|
|
"server/{server,exit}.js": {
|
|
"remove-process-exit": "off",
|
|
"remove-console": "off"
|
|
},
|
|
"server/{terminal,distribute/log}.js": {
|
|
"remove-console": "off"
|
|
},
|
|
"client/{client,cloudcmd,load-module}.js": {
|
|
"remove-console": "off"
|
|
},
|
|
"client/modules/config/index.js": {
|
|
"apply-shorthand-properties": [{
|
|
"ignore": [
|
|
"ONE_MINUTE"
|
|
]
|
|
}]
|
|
},
|
|
"view.js": {
|
|
"apply-shorthand-properties": "off"
|
|
},
|
|
"test/common/cloudfunc.js": {
|
|
"remove-console": "off"
|
|
},
|
|
"storage.js": {
|
|
"remove-useless-async": "off"
|
|
}
|
|
}
|
|
}
|