csslint icon indicating copy to clipboard operation
csslint copied to clipboard

Automated linting of Cascading Stylesheets

Results 103 csslint issues
Sort by recently updated
recently updated
newest added

this can be useful for projects like [AtomLinter](https://github.com/AtomLinter/Linter) or [SublimeLinter](https://github.com/SublimeLinter/SublimeLinter3) which create new files in temp dir and live lint them without save original file. So for csslint `.csslintrc` file...

- Enable the verify API to accept an options object - Pass the options object through to the verify API from the command line - Fix a defect in the...

It would be nice to have localization for rule and error messages.

Feature Request

valid css for some cases, links here: * https://developer.mozilla.org/en-US/docs/Web/CSS/:any * https://drafts.csswg.org/selectors-4/#matches * https://css-tricks.com/almanac/selectors/m/matches/ ``` :-moz-any(p, input) { color: #aaaaaa; } ``` Causes error: > Expected RPAREN at line 1, col...

i cannot check my 320kb css file (compressed about 50kb) via CLI or csslint.net on the command line i get: FATAL ERROR: CALL_AND_RETRY_0 Allocation failed - process out of memory...

Web UI
BUG

When you run css lint on a minified CSS file, and it finds errors, it outputs the entire contents of the file for each error. Probably because of this line...

BUG

https://github.com/CSSLint/csslint/wiki/Require-standard-property-with-vendor-prefix This article says we need to include vendor prefixes but follow on with border-radius: 6px for when all vendors implement the border radius property without prefixes. It goes to...

This issue was initially reported to `grunt-contrib-csslint` but its a `csslint` issue. see there: https://github.com/gruntjs/grunt-contrib-csslint/issues/61 Given a CSS file containing this content: ```css @keyframes spin { from { -moz-transform: rotate(10deg);...

I get the bulletproof warning even if I only have one font source: ``` @font-face { font-family: "Quicksand"; src: url('Quicksand-Regular.ttf'); } ```

I think if we will merge CSSLint and [Stylelint](http://stylelint.io/) everyone will win — users will get more features, and we will have more free time. We already have great examples...