Sha256: 3b5587fbed9e2b31a1efe65e13b8ed3d66a78ec9c9c563101c1abf9bb5b4f32c
Contents?: true
Size: 743 Bytes
Versions: 1
Compression:
Stored size: 743 Bytes
Contents
# This rule is taken from https://github.com/stubbornella/csslint/tree/master/src/rules # # # Copyright (c) 2011 Nicole Sullivan and Nicholas C. Zakas. All rights reserved. # TODO: Paste the CSSLint LICENSE here. # # # /* # * Rule: There should be no syntax errors. (Duh.) # */ # /*global CSSLint*/ # CSSLint.addRule({ # # //rule information # id: "errors", # name: "Parsing Errors", # desc: "This rule looks for recoverable syntax errors.", # browsers: "All", # # //initialization # init: function(parser, reporter){ # var rule = this; # # parser.addListener("error", function(event){ # reporter.error(event.message, event.line, event.col, rule); # }); # # } # # });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sasslint-0.0.1 | lib/sasslint/rules/css/errors.rb |