
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@db-ui/stylelint
Advanced tools
Validate the correct usage of DB UX in your (S)CSS code.
npm install stylelint @db-ui/stylelint --save-dev
Note: We recommend installing
stylelint-config-standard
,stylelint-use-logical
&@double-great/stylelint-a11y
as well.
## Usage
Add this to your `.stylelintrc.json` configuration file:
```json
{
"plugins": [
...
"@db-ui/stylelint"
]
}
Enable rules inside your .stylelintrc.json
with:
{
rules: {
"db-ui/use-spacings": [true], // margins, paddings, gaps
"db-ui/use-border-height": [true], // border-width & border
"db-ui/use-border-radius": [true], // border-radius
"db-ui/use-border-color": [true] // border-color & border
}
}
There are some additional settings for every rule which can be applied to the .stylelintrc.json
:
{
rules: {
"db-ui/use-xxx": [
true,
{
allowCalc: true, // allow all calc() functions - they are hard to lint
ignore: ["test.scss"], // ignore specific files
allow: {
// allow additional values e.g. for SASS or exceptions/workarounds
startsWith: ["map.get"],
includes: ["--custom-gap"],
exact: ["$custom-padding"]
}
}
]
}
}
FAQs
Ensures DB UX styles are used correctly
We found that @db-ui/stylelint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.