Gathering detailed insights and metrics for stylelint-config-recess-order-empty-line-before-always
Gathering detailed insights and metrics for stylelint-config-recess-order-empty-line-before-always
Gathering detailed insights and metrics for stylelint-config-recess-order-empty-line-before-always
Gathering detailed insights and metrics for stylelint-config-recess-order-empty-line-before-always
🗂️ Recess-based property sort order for Stylelint.
npm install stylelint-config-recess-order-empty-line-before-always
Typescript
Module System
Node Version
NPM Version
JavaScript (99.34%)
Shell (0.66%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
361 Stars
205 Commits
23 Forks
4 Watchers
7 Branches
17 Contributors
Updated on Jul 08, 2025
Latest Version
1.0.0
Package Id
stylelint-config-recess-order-empty-line-before-always@1.0.0
Unpacked Size
14.40 kB
Size
4.41 kB
File Count
5
NPM Version
9.5.0
Node Version
18.14.2
Published on
Jul 02, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
A Stylelint config that sorts CSS properties the way Recess did and Bootstrap did/does.
*With some modifications & additions for modern properties.
1npm install --save-dev stylelint stylelint-config-recess-order
1module.exports = { 2 extends: ['stylelint-config-recess-order'], 3 rules: { 4 // Add overrides and additional rules here 5 }, 6}
The default setup applies only the 'order/properties-order'
rule with the various property groups. If you need to configure other options for this rule,
the groups can be imported separately and the rule configured to your needs.
1const propertyGroups = require('stylelint-config-recess-order/groups') 2 3module.exports = { 4 extends: [], // Do not extend the config here. 5 rules: { 6 // Configure the rule manually. 7 'order/properties-order': propertyGroups.map((group) => ({ 8 ...group, 9 emptyLineBefore: 'always', 10 noEmptyLineBetween: true, 11 })), 12 }, 13}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
14 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 1/22 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More