我如何禁用npm警告“ tslint:错误no-string-literal:不允许通过字符串文字访问对象”我试图在tslint.json中添加规则“ no-string-literal”:false。我仍然看到警告。
答案 0 :(得分:1)
在您的tslint.json中添加以下行“ no-string-literal”:false
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
},
"rules": {
"no-console": false,
"jsx-no-lambda": false,
"no-string-literal": false
}
}
答案 1 :(得分:0)
在tslint配置文件的rules
下,将"no-string-literal"
设置为false
,使其变为:"no-string-literal": false