跳至主要内容

max-params

强制函数定义中的参数数量上限。

此规则扩展了基本 eslint/max-params 规则。此版本添加了对 TypeScript this 参数的支持,因此它们不会被计入参数。

选项

参见 eslint/max-params 选项.

如何使用

.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"
}
};

在游乐场中尝试此规则 ↗

资源

ESLint 核心 中 ❤️ 获取。