为了在JSHint中关闭特定行的掉毛规则,我们使用以下规则:
/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在尝试找到与以上相同的内容。
为了在JSHint中关闭特定行的掉毛规则,我们使用以下规则:
/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */
我一直在尝试找到与以上相同的内容。
Answers:
您现在可以使用单行语法:
var thing = new Thing(); // eslint-disable-line no-use-before-define
thing.sayHello();
function Thing() {
this.sayHello = function() { console.log("hello"); };
}
或者,如果您不想在与实际代码相同的行上添加注释,则可以禁用下一行:
// eslint-disable-next-line no-use-before-define
var thing = new Thing();
所需的文档链接:http : //eslint.org/docs/user-guide/configuring.html#configuring-rules
//eslint-disable-line
,它似乎会禁用给定行的所有规则。
--no-inline-config
打开了,这是Prevent comments from changing config or rules
您可以使用以下内容
/*eslint-disable */
//suppress all warnings between comments
alert('foo');
/*eslint-enable */
略微掩盖了文档的“配置规则”部分;
要禁用整个文件的警告,您可以在文件顶部添加注释,例如
/*eslint eqeqeq:0*/
ESlint现在已更新,以一种更好的方式禁用单行,请参阅@goofballLogic的出色答案。
//
注释语法不起作用…
您还可以通过在启用(打开)和禁用(关闭)块中指定特定的规则/规则(而非全部)来禁用它们:
/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert */
通过上面的@goofballMagic链接:http ://eslint.org/docs/user-guide/configuring.html#configuring-rules
Expected exception block, space or tab after '/*' in comment.
:)
prettier
和eslint
格式化我的代码。这不允许内联注释。许多/* eslint-disable-next-line ... */
语句很难阅读和发现在代码中。
/* eslint-disable no-alert, no-console */
/* eslint-disable */
alert('foo');
/* eslint-enable */
/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert, no-console */
/* eslint-disable */
alert('foo');
/* eslint-disable no-alert */
alert('foo');
alert('foo'); // eslint-disable-line
// eslint-disable-next-line
alert('foo');
alert('foo'); // eslint-disable-line no-alert
// eslint-disable-next-line no-alert
alert('foo');
alert('foo'); // eslint-disable-line no-alert, quotes, semi
// eslint-disable-next-line no-alert, quotes, semi
alert('foo');
foo(); // eslint-disable-line example/rule-name
您可以使用内嵌注释:// eslint-disable-next-line rule-name
。
// eslint-disable-next-line no-console
console.log('eslint will ignore the no-console on this line of code');
ESLint- 使用内联注释禁用规则
行尾的一般注释// eslint-disable-line
不需要任何内容:无需查找代码来指定您希望ES Lint忽略的内容。
如果您需要除快速调试之外的任何其他原因而忽略任何语法,那么您会遇到问题:为什么不更新delint配置?
我很乐意// eslint-disable-line
允许我插入console
以便快速检查服务,而不会因为违反协议而使我的开发环境受阻。(我通常禁止console
使用日志记录类,有时该类基于console
。)
或者对于下一行的多个忽略,请使用逗号将规则字符串化
// eslint-disable-next-line class-methods-use-this, no-unused-vars
要为以下文件的其余部分禁用单个规则:
/* eslint no-undef: "off"*/
const uploadData = new FormData();
/* eslint-disable no-new */
要禁用特定行上的所有规则:
alert('foo'); // eslint-disable-line
您可以将错误的文件添加到项目中的.eslintignore文件中,就像所有.vue文件一样,只需添加/*.vue
eslint-disable-next-line
: