关闭特定行的eslint规则

二次信任 提交于 2020-08-14 15:07:38

问题:

In order to turn off linting rule for a particular line in JSHint we use the following rule: 为了关闭JSHint中特定行的linting规则,我们使用以下规则:

/* jshint ignore:start*/
$scope.someVar = ConstructorFunction();
/* jshint ignore:end */

I have been trying to locate the equivalent of the above for eslint. 我一直试图找到相当于以上的eslint。


解决方案:

参考一: https://stackoom.com/question/1sMPh/关闭特定行的eslint规则
参考二: https://oldbug.net/q/1sMPh/Turning-off-eslint-rule-for-a-specific-line
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!