Tslint 说不允许调用 console. log-我如何允许这样做?

我刚开始使用带打字脚本的 create-response-app

create-react-app my-app --scripts-version=react-scripts-ts

而默认的 tslint.json 配置不允许 console.log ()。

我(现在)如何启用 console.log?

这个的文件在 https://palantir.github.io/tslint/rules/no-console/,但是他们没有说把这条线放在哪里:

    "no-console": [true, "log", "error"]

我搜索并找到了这个 Json 配置文件语法,所以我试了这个:

"rules": {
"no-console": [true, "warning"]
}

试图获取只是警告的日志消息。 但是没成功。

我已经注释掉了一些 console. log ()代码行,但希望将来能够这样做。

118457 次浏览

在调用 console.log之前的行中添加 // tslint:disable-next-line:no-console,以防止只出现一次错误消息。

如果您想完全禁用该规则,请将以下内容添加到您的 tslint.json(最有可能是在您的根文件夹中) :

{
"rules": {
"no-console": false
}
}

根据文件 https://eslint.org/docs/user-guide/getting-started#configuration

  • “关闭”或0-关闭规则
  • “警告”或1-打开规则作为警告(不影响退出代码)
  • “ error”或2-将规则作为错误打开(退出代码为1)

顺便说一句,你的正确设置应该是

{
"rules": {
"no-console": false
}
}

对于那些带着 javascript 和 typecript 混合代码库来到这里的人来说。

您可能需要在 jsRules 中定义“ no-sole”选项,jslints 规则对象用于 javascript 文件,也就是说,对于 javascript 和 typecript 有单独的规则对象。

//tslint.json

{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], //Example...
"rules": {
"no-console": false //Disable for typescript
},
"jsRules": {
"no-console": false //Disable for javascript
}
}

将以下内容添加到 tslint.json

{
"rules": {
"no-console": {
"severity": "warning",
}
}
}

这是定义无控制台规则(或任何其他相关规则)的正确语法,但只能使用警告而不是错误(显然可以将选项更改为您想要的任何内容)

"no-console": {
"severity": "warning",
"options": [
"log",
"error",
"debug",
"info",
"time",
"timeEnd",
"trace"
]
},

在 typeScript 版本3中,更新 tslint.json 按如下键规则:

"no-console": [
true,
"debug",
"time",
"timeEnd",
"trace"
],

这样,您只需指定不使用 debug、 time、 timeEnd、 trace 即可,如果默认的 tslint“ info”在列表中,只需删除它。

如果 // tslint:disable-next-line:no-console不工作尝试与 // eslint:disable-next-line:no-console

  {
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
},
"rules": {
"no-console": false
},
"jsRules": {
"no-console": false
}
}

enter image description here

我处理 Tslint“无控制台”规则的方法是对每个文件进行处理,我发现这种方法在开发阶段非常方便并且是孤立的。

只要我需要使用第一个 console.log () ,Visual Studio Code 就会显示添加的选项:

//tslint: able-next-line: no-sole

Log () ;

因此,在这里我只需删除“-next-line”,这个命令将覆盖整个文件。

//tslint: disable: no-sole

Log () ;

我希望它可以作为整个应用程序禁用该功能的替代方案。

RON

语法改变了!

对于下一行异常,在没有控制台之前需要一个空格: // eslint-disable-next-line no-console

对于文件异常,它也必须在多行注释语法 /* eslint-disable no-console */中。

它还可能取决于某些配置。

只是一个脏黑客绕过线程:

const { log } = console; log('Hello linter'); // TODO: remove

对于那些来这里寻找一种方法来保持 console.log为不允许的,但允许有用的方法,如 console.timeconsole.timeEnd,例如,您可以明确地定义它全局在您的。Eslintrc 规则:

 "no-console": ["error", {"allow": ["time", "timeEnd", "trace"]}],