UNPKG

259 BJavaScriptView Raw
1"use strict";
2
3/**
4 * @param { import("../lib/css-analyzer") } analyzer
5 */
6function rule(analyzer) {
7 analyzer.on("css", function (css) {
8 analyzer.setMetric("length", css.length);
9 });
10}
11
12rule.description = "Length of CSS file";
13module.exports = rule;