本文介绍了Eslint:如何禁用“意外的控制台语句"在Node.js中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将eslint与Sublime Text 3配合使用,并且正在编写gulpfile.js
.
I'm using eslint with Sublime Text 3 and I am writing gulpfile.js
.
/*eslint-env node*/
var gulp = require('gulp');
gulp.task('default', function(){
console.log('default task');
});
但是eslint继续显示错误:错误:意外的控制台语句.(无控制台)"
But eslint keeps showing error : "Error: Unexpected console statement. (no-console)"
我在此处找到了官方文件,但是我仍然不知道如何禁用它.
I found official document here, but I still don't know how to disable it.
/*eslint-env node*/
var gulp = require('gulp');
/*eslint no-console: 2*/
gulp.task('default', function(){
console.log('default task');
});
也不起作用.
我的Sublime Text 3插件:SublimeLinter和SublimeLinter-contrib-eslint.
My Sublime Text 3 plugins: SublimeLinter and SublimeLinter-contrib-eslint.
这是我的.eslintrc.js
文件:
module.exports = {
"rules": {
"no-console":0,
"indent": [
2,
"tab"
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended"
};
推荐答案
在文件目录中创建一个.eslintrc.js,并将以下内容放入其中:
Create a .eslintrc.js in the directory of your file, and put the following contents in it:
module.exports = {
rules: {
'no-console': 'off',
},
};
这篇关于Eslint:如何禁用“意外的控制台语句"在Node.js中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!