Gathering detailed insights and metrics for stylelint-config-recess-order
Gathering detailed insights and metrics for stylelint-config-recess-order
Gathering detailed insights and metrics for stylelint-config-recess-order
Gathering detailed insights and metrics for stylelint-config-recess-order
🗂️ Recess-based property sort order for Stylelint.
npm install stylelint-config-recess-order
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
354 Stars
184 Commits
22 Forks
4 Watching
10 Branches
16 Contributors
Updated on 29 Oct 2024
Minified
Minified + Gzipped
JavaScript (99.01%)
Shell (0.99%)
Cumulative downloads
Total Downloads
Last day
11.1%
62,733
Compared to previous day
Last week
3.9%
350,059
Compared to previous week
Last month
10.8%
1,400,078
Compared to previous month
Last year
68.6%
13,036,621
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
license file detected
Details
Reason
4 existing vulnerabilities detected
Details
Reason
2 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 5/22 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
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 2024-11-18
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