UNPKG

htmlcs

Version:

html hint tool, focused on semantic code style.

27 lines (20 loc) 532 B
/** * @file rule: style-disabled * @author nighca<nighca@live.cn> */ module.exports = { name: 'style-disabled', desc: 'Style tag can not be used.', lint: function (getCfg, document, reporter) { document.getElementsByTagName('style').forEach(function (element) { if (!getCfg(element)) { return; } reporter.warn( element.startIndex, '034', 'Style tag can not be used.' ); }); } };