Versions

no-alert

Disallow the use of alert, confirm, and prompt

JavaScript 的 alertconfirmprompt 函数被广泛认为是碍眼的 UI 元素,应该用更合适的自定义 UI 实现来代替。此外,alert 经常在调试代码时使用,但应在部署到生产环境前删除。

alert("here!");

规则细节

此规则致力于捕捉应被删除的调试代码和应被替换成不那么碍眼的自定义 UI 的弹出式 UI 元素。因此,当它遇到非 shadowed 的调用 alertpromptconfirm 函数时,它将发出警告。

使用此规则的错误示例:

Open in Playground
/*eslint no-alert: "error"*/

alert("here!");

confirm("Are you sure?");

prompt("What's your name?", "John Doe");

使用此规则的正确示例:

Open in Playground
/*eslint no-alert: "error"*/

customAlert("Something happened!");

customConfirm("Are you sure?");

customPrompt("Who are you?");

function foo() {
    var alert = myCustomLib.customAlert;
    alert();
}

Version

This rule was introduced in ESLint v0.0.5.

Resources

更改语言