跳至主要内容

no-loop-func

禁止在循环语句中包含不安全引用的函数声明。

此规则扩展了基础规则 eslint/no-loop-func。它为 TypeScript 类型添加了支持。

选项

参见 eslint/no-loop-func 选项.

使用方法

.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"no-loop-func": "off",
"@typescript-eslint/no-loop-func": "error"
}
};

在 playground 中尝试此规则 ↗

资源

来自 ESLint 核心 的 ❤️。