max-params
强制函数定义中的参数数量上限。
此规则扩展了基本 eslint/max-params
规则。此版本添加了对 TypeScript this
参数的支持,因此它们不会被计入参数。
选项
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"max-params": "off",
"@typescript-eslint/max-params": "error"
}
};
在游乐场中尝试此规则 ↗