vue tslintエラー:Calls to'console.log'are not allowed
1762 ワード
Vue CLI 3のvue createを使用してvue+tsプロジェクトを作成し、デフォルトの構成を使用して、コンソールはCalls to'console.log'are not allowedに警告し、解決します.
tslint.jsonのrulesの下に「no-console」:falseを追加します.tsling.configに「extends」:「./tslint.config」を追加する必要はありません.サービスを再起動し、完了します.
tslint.jsonファイルを添付します.
転載先:https://www.cnblogs.com/changfeng1800/p/10985875.html
tslint.jsonのrulesの下に「no-console」:falseを追加します.tsling.configに「extends」:「./tslint.config」を追加する必要はありません.サービスを再起動し、完了します.
tslint.jsonファイルを添付します.
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": { "exclude": [ "node_modules/**" ] }, "rules": { "quotemark": [true, "single"], "indent": [true, "spaces", 2], "interface-name": false, "ordered-imports": false, "object-literal-sort-keys": false, "no-consecutive-blank-lines": false, "max-line-length": [ false ], "no-console": false } }
転載先:https://www.cnblogs.com/changfeng1800/p/10985875.html