Skip to content

Instantly share code, notes, and snippets.

View jamesfinley's full-sized avatar

James Finley jamesfinley

View GitHub Profile
@jamesfinley
jamesfinley / .stylelintrc.json
Created February 22, 2023 12:08
A Stylelint for ordering your properties and keeping things clean.
/* You'll need the following packages: stylelint, stylelint-config-standard, stylelint-order */
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"length-zero-no-unit": [true, {"ignore": ["custom-properties"]}],
"property-no-vendor-prefix": null,
@nathansmith
nathansmith / lithium_center.html
Created May 18, 2011 17:11
Tame Lithium's Center Tag
<!--
Since Lithium is ghetto and wraps its entire
template in a <center> tag, this is how I am
wrestling back some measure of page control.
-->
</center>
<!-- [Your template code here] -->