sandpaper
Version:
Sandpaper is a commandline tool that's used to smooth out the rough edges when coding websites using HTML, CSS, and Javascript.
20 lines (17 loc) • 372 B
JavaScript
;
const path = require('path');
const config = {
extends: path.resolve('./node_modules/stylelint-config-standard/'),
plugins: [
path.resolve('/node_modules/stylelint-order/')
],
rules: {
'order/order': [
'custom-properties',
'declarations'
],
'order/properties-alphabetical-order': true,
indentation: 'tab'
}
};
exports.config = config;