mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"plugins": ["cloudcmd"],
|
|
"ignore": [
|
|
"html",
|
|
"fixture*",
|
|
"app.json",
|
|
"fontello.json"
|
|
],
|
|
"rules": {
|
|
"github/convert-npm-to-bun": "off",
|
|
"github/set-node-versions": ["on", {
|
|
"versions": [
|
|
"18.x",
|
|
"20.x"
|
|
]
|
|
}]
|
|
},
|
|
"match": {
|
|
"base64": {
|
|
"convert-typeof-to-is-type": "off"
|
|
},
|
|
"*.md": {
|
|
"nodejs/convert-commonjs-to-esm": "on"
|
|
},
|
|
".webpack": {
|
|
"webpack": "on"
|
|
},
|
|
"server": {
|
|
"nodejs/remove-process-exit": "on"
|
|
},
|
|
"server/{server,exit}.js": {
|
|
"nodejs/remove-process-exit": "off"
|
|
},
|
|
"server/{server,exit,terminal,distribute/log}.{js,mjs}": {
|
|
"remove-console": "off"
|
|
},
|
|
"client/{client,cloudcmd,load-module}.js": {
|
|
"remove-console": "off"
|
|
},
|
|
"client/sw": {
|
|
"remove-console": "off"
|
|
},
|
|
"test/common/cloudfunc.js": {
|
|
"remove-console": "off"
|
|
},
|
|
"storage.js": {
|
|
"promises/remove-useless-async": "off"
|
|
},
|
|
"docker.yml": {
|
|
"github/set-node-versions": "off"
|
|
},
|
|
"vim.js": {
|
|
"merge-duplicate-functions": "off"
|
|
}
|
|
}
|
|
}
|