User Tools

Site Tools


css:eslint

关于临时注释eslint

禁用 ESLint:
/* eslint-disable */
var obj = { key: 'value', }; // I don't care about IE8  
/* eslint-enable */

禁用一条规则:
/* eslint-disable no-alert */
alert('doing awful things');  
/* eslint-enable no-alert */

调整规则:
/* eslint no-comma-dangle:1 */
// Make this just a warning, not an error
var obj = { key: 'value', }  

参考:http://www.tuicool.com/articles/7JZZJzn

css/eslint.txt · Last modified: 2018/07/24 08:13 by 127.0.0.1

Except where otherwise noted, content on this wiki is licensed under the following license: 沪ICP备12046235号-2
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki