Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@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 352 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.