Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@mrhenry/stylelint-mrhenry-prop-order
Advanced tools
Mr. Henry's preferred order for CSS properties
Specify a strict order for CSS properties.
/* valid */
.foo {
width: 100px;
height: 20px;
}
/* invalid */
.foo {
height: 20px; /* we prefer width before height */
width: 100px;
}
/* valid */
.foo {
margin: 20px;
margin-top: 10px;
}
/* invalid */
.foo {
margin-top: 10px; /* longhand before a shorthand */
margin: 20px;
}
This package doesn't create groups of properties. But it will respect patterns that are often used to group properties:
.foo {
a: 0; /* section : 1 */
b: 0; /* section : 1 */
c: 0; /* section : 2 */
d: 0; /* section : 2 */
/* a comment */
e: 0; /* section : 3 */
f: 0; /* section : 3 */
--a: 0; /* ignored */
--b: 0; /* ignored */
-webkit-foo: 0; /* ignored */
}
npm install --save-dev @mrhenry/stylelint-mrhenry-prop-order
// stylelint.config.js
module.exports = {
plugins: [
"@mrhenry/stylelint-mrhenry-prop-order",
],
rules: {
"@mrhenry/stylelint-mrhenry-prop-order": true,
},
}
The list is sourced from @webref/css
.
npm run update
(to get the latest @webref/css
)npm run test
This will tell you which properties are missing.
FAQs
Mr. Henry's preferred order for CSS properties
The npm package @mrhenry/stylelint-mrhenry-prop-order receives a total of 0 weekly downloads. As such, @mrhenry/stylelint-mrhenry-prop-order popularity was classified as not popular.
We found that @mrhenry/stylelint-mrhenry-prop-order 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.