Created
June 20, 2013 17:04
-
-
Save johnrengelman/5824572 to your computer and use it in GitHub Desktop.
Failing lesslint example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
csslint: { | |
options: { | |
formatters: [ | |
{id: 'lint-xml', dest: 'build/reports/csslint/csslint.xml'} | |
] | |
}, | |
strict: { | |
options: { | |
// IDs until re-use needed. Re-factor scaredy cats! | |
ids: false, | |
// Yes, never import css. Collapse it. | |
import: 2, | |
// who cares about IE 6 and 7? | |
"box-sizing": false, | |
// Assuming we know the box model... | |
"box-model": false, | |
// Pretty rather than accessible, I guess | |
"outline-none": false, | |
// This OSCSS principal isn't very DRY | |
"qualified-headings": false, | |
"unique-headings": false, | |
// Yeah it's slow. It's also spec | |
"universal-selector": false | |
} | |
} | |
}, | |
less: { | |
options: { | |
yuicompress: false | |
}, | |
layout: { | |
files: { | |
'layout.min.css' : 'layout.less' | |
} | |
} | |
}, | |
lesslint: { | |
src: ['*.less'] | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import-once "mixin"; | |
div.plan { | |
.highlights { | |
.clear-fix(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.clear-fix() { | |
zoom: 1; /* For IE 6/7 (trigger hasLayout) */ | |
&:after { | |
content: "."; | |
display: block; | |
clear: both; | |
visibility: hidden; | |
line-height: 0; | |
height: 0; | |
clear: both; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "test-lesslint", | |
"version": "0.1.0", | |
"devDependencies": { | |
"grunt": "~0.4.1", | |
"grunt-karma": "~0.4.3", | |
"grunt-contrib-concat": "~0.2.0", | |
"grunt-contrib-csslint": "~0.1.2", | |
"grunt-contrib-jshint": "~0.6.0", | |
"grunt-contrib-less": "~0.5.1", | |
"grunt-lesslint": "~0.7.0", | |
"grunt-contrib-uglify": "~0.2.0", | |
"grunt-contrib-watch": "~0.3.1", | |
"grunt-contrib-copy": "~0.4.1", | |
"grunt-contrib-clean": "~0.4.1", | |
"grunt-html2js": "~0.1.3" | |
}, | |
"dependencies": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment