Gathering detailed insights and metrics for @wide/stylelint-config
Gathering detailed insights and metrics for @wide/stylelint-config
Gathering detailed insights and metrics for @wide/stylelint-config
Gathering detailed insights and metrics for @wide/stylelint-config
npm install @wide/stylelint-config
Typescript
Module System
Min. Node Version
Node Version
NPM Version
59.3
Supply Chain
86.8
Quality
76.3
Maintenance
100
Vulnerability
97
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
11 Commits
7 Watchers
2 Branches
3 Contributors
Updated on Oct 28, 2021
Latest Version
3.1.0
Package Id
@wide/stylelint-config@3.1.0
Unpacked Size
16.24 kB
Size
4.43 kB
File Count
5
NPM Version
6.14.16
Node Version
14.19.0
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
The recommended stylelint config for scss files.
It turns on all the possible errors rules within stylelint.
SCSS Property: Use stylelint-scss
plugin and stylelint-config-standard-scss
config.
Property Ordering: Extends stylelint-config-property-sort-order-smacss
. Refer to here for the comprehensive list of property orders.
1npm install stylelint stylelint-scss stylelint-config-property-sort-order-smacss stylelint-order @wide/stylelint-config --save-dev
If you've installed @wide/stylelint-config
locally within your project, just set your stylelint
config to:
1{ 2 "extends": "@wide/stylelint-config" 3}
Simply add a "rules"
key to your config, then add your overrides and additions there.
For example, to change the at-rule-no-unknown
rule to use its ignoreAtRules
option, turn off the block-no-empty
rule, and add the unit-allowed-list
rule:
1{ 2 "extends": "@wide/stylelint-config", 3 "rules": { 4 "at-rule-no-unknown": [ 5 true, 6 { 7 "ignoreAtRules": ["extends"] 8 } 9 ], 10 "block-no-empty": null, 11 "unit-allowed-list": ["em", "rem", "s"] 12 } 13}
Use Stylelint CLI to check the supported files. Drop this line into your package.json and customize it as your needs:
1{ 2 "scripts": { 3 "lint:scss": "stylelint src/**/*.scss --formatter verbose" 4 } 5}
This project is licensed under the MIT License - see the licence file for details
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/7 approved changesets -- score normalized to 0
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