What is postcss-sorting?
The postcss-sorting npm package is a tool for sorting CSS properties in a specific order. It can be used to enforce a consistent order in CSS files, which can make them more readable and maintainable. It is built as a PostCSS plugin and can be integrated into build processes to automatically sort properties according to a predefined set of rules.
What are postcss-sorting's main functionalities?
Sorting CSS properties
This feature allows developers to automatically sort CSS properties within a stylesheet. The sorting can be customized through options to fit the team's or project's coding standards.
postcss([ require('postcss-sorting')({ /* options */ }) ]).process(css, { from: undefined }).then(result => { console.log(result.css); });
Sorting at-rules
With postcss-sorting, developers can also sort at-rules in a specific order. This can include sorting of media queries, font-face declarations, and other at-rules to improve the structure of the CSS.
postcss([ require('postcss-sorting')({ order: ['custom-properties', 'dollar-variables', 'declarations', 'at-rules', 'rules'] }) ]).process(css, { from: undefined }).then(result => { console.log(result.css); });
Sorting based on custom order
Developers can define a custom order for properties to be sorted. This allows for a highly personalized sorting order that can adhere to specific coding guidelines or preferences.
postcss([ require('postcss-sorting')({ 'properties-order': ['position', 'top', 'right', 'bottom', 'left'] }) ]).process(css, { from: undefined }).then(result => { console.log(result.css); });
Other packages similar to postcss-sorting
stylelint-order
stylelint-order is a plugin for stylelint that checks the order of content within declaration blocks. While it does not automatically sort properties, it can enforce a specific order and report when the order is incorrect.
csscomb
csscomb is a coding style formatter for CSS. Similar to postcss-sorting, it can sort properties according to a specific order. However, csscomb is not a PostCSS plugin and works as a standalone tool or integrated with other code editors.
perfectionist
perfectionist is another PostCSS plugin that beautifies CSS by formatting it according to a consistent standard. It includes sorting capabilities but also focuses on other aspects of beautification, such as indentation and whitespace.
PostCSS Sorting
PostCSS plugin to keep rules and at-rules content in order.
Also available as Sublime Text plugin, Atom plugin, and VS Code plugin.
Lint style sheets order with stylelint-order.
Features
- Sorts rules and at-rules content.
- Sorts properties.
- Sorts at-rules by different options.
- Groups properties, custom properties, dollar variables, nested rules, nested at-rules.
- Adds empty lines before different types of nodes.
- Supports CSS, SCSS (if postcss-scss parser is used), PreCSS and most likely any other syntax added by other PostCSS plugins.
Installation
$ npm install postcss-sorting
Options
The plugin has no default options. Everything is disabled by default.
Order
order
: Specify the order of content within declaration blocks.properties-order
: Specify the order of properties within declaration blocks. Can specify empty line before property groups.unspecified-properties-position
: Specify position for properties not specified in properties-order
.
Empty lines
Handling comments
Shared-line comments are comments which are located after a node and on the same line as a node.
a {
color: pink;
}
Shared-line comments are always ignored in all “empty lines before” options. The plugin always looks “through” these comments. For example:
{
"declaration-empty-line-before": [true, {
except: "after-declaration"
}]
}
Technically there is a comment before bottom
. But it's a shared line comment, so plugin looks before this comment and sees top
:
a {
--prop: pink;
top: 5px;
bottom: 15px;
}
For “order” options comments that are before node and on a separate line linked to that node. Shared-line comments are also linked to that node.
a {
top: 5px;
bottom: 15px;
}
Migration from 1.x
If you have been using predefined configs, you can look at migrated predefined configs.
sort-order
was split into order
and properties-order
.
properties-order
now uses an array of objects for grouping.
sort-order
keywords to new config conversion:
1.x | 2.x |
---|
@atrule | { order: ["at-rules"] } or { order: [{ type: "at-rule" }] } |
@atrulename | { order: [{ type: "at-rule", name: "atrulename" }] } |
@atrulename parameter | { order: [{ type: "at-rule", name: "atrulename", parameter: "parameter" }] } |
>child | { order: ["rules"] } |
$variable | { order: ["custom-properties", "dollar-variables"] } |
“leftovers” token ... | { "unspecified-properties-position": "bottom" } |
Config for 1.x
:
{
"sort-order": [
[
"$variable"
],
[
"margin",
"padding"
],
[
"border",
"background"
],
[
'...',
"at-rule",
"@include",
"@include media",
">child"
]
]
}
Config for 2.x
:
{
"order": [
"custom-properties",
"dollar-variables",
"declarations",
"at-rules",
{
"type": "at-rule",
"name": "include"
},
{
"type": "at-rule",
"name": "include",
"parameter": "icon"
},
"rules"
],
"properties-order": [
{
"emptyLineBefore": true,
"properties": [
"margin",
"padding"
]
},
{
"emptyLineBefore": true,
"properties": [
"border",
"background"
]
}
],
"unspecified-properties-position": "bottom"
}
Usage
See PostCSS docs for examples for your environment.
Text editor
This plugin available as Sublime Text plugin, Atom plugin, and VS Code plugin.
Gulp
Add Gulp PostCSS and PostCSS Sorting to your build tool:
npm install gulp-postcss postcss-sorting --save-dev
Enable PostCSS Sorting within your Gulpfile:
var postcss = require('gulp-postcss');
var sorting = require('postcss-sorting');
gulp.task('css', function () {
return gulp.src('./css/src/*.css').pipe(
postcss([
sorting({ })
])
).pipe(
gulp.dest('./css/src')
);
});
Grunt
Add Grunt PostCSS and PostCSS Sorting to your build tool:
npm install grunt-postcss postcss-sorting --save-dev
Enable PostCSS Sorting within your Gruntfile:
grunt.loadNpmTasks('grunt-postcss');
grunt.initConfig({
postcss: {
options: {
processors: [
require('postcss-sorting')({ })
]
},
dist: {
src: 'css/*.css'
}
}
});
Related tools
stylelint and stylelint-order help lint style sheets and let know if style sheet order is correct.
If you want format style sheets, use perfectionist or stylefmt, also a PostCSS-based tools.
Thanks
This plugin is heavily inspired by stylelint. Some code logic, tests, and documentation parts are taken from this tool.