美文网首页大前端刷级之路ESlint
disallow the use of console (no-

disallow the use of console (no-

作者: 天驱丶 | 来源:发表于2017-07-26 23:26 被阅读13次

    Examples of incorrect code for this rule:

    /*eslint no-console: "error"*/
    
    console.log("Log a debug level message.");
    console.warn("Log a warn level message.");
    console.error("Log an error level message.");
    
    

    Examples of correct code for this rule:

    /*eslint no-console: "error"*/
    
    // custom console
    Console.log("Hello world!");
    

    来源:http://eslint.org/docs/rules/no-console

    相关文章

      网友评论

        本文标题:disallow the use of console (no-

        本文链接:https://www.haomeiwen.com/subject/hndakxtx.html