
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
eslint-plugin-css
Advanced tools
An ESLint plugin that provides rules to verify CSS definition objects.
eslint-plugin-css is an ESLint plugin that provides rules to verify CSS definition objects.
::: WORKING IN PROGRESS :::
This ESLint plugin provides linting rules to verify CSS definition objects.
You can check on the Online DEMO.
Stylelint partially supports CSS in JS, but some issues haven't been resolved for a long time.
Also, CSS definitions using template literals are similar to CSS syntax, but CSS definitions using JavaScript objects are not. ESLint may work better for linting JavaScript objects.
See documents.
npm install --save-dev eslint eslint-plugin-css
Requirements
- ESLint v7.0.0 and above
- Node.js v12.22.x, v14.17.x, v16.x and above
Add css
to the plugins section of your .eslintrc
configuration file (you can omit the eslint-plugin-
prefix)
and either use one of the two configurations available (recommended
or all
) or configure the rules you want:
eslint.config.js
)The plugin.configs["flat/recommended"]
config enables a subset of the rules that should be most useful to most users.
See lib/configs/flat/recommended.ts for more details.
// eslint.config.js
import * as cssPlugin from "eslint-plugin-css"
export default [
cssPlugin.configs["flat/recommended"],
];
.eslintrc.*
)The plugin:css/recommended
config enables a subset of the rules that should be most useful to most users.
See lib/configs/recommended.ts for more details.
// .eslintrc.js
module.exports = {
"plugins": [
"css"
],
"extends": [
// add more generic rulesets here, such as:
// 'eslint:recommended',
"plugin:css/recommended"
]
}
eslint.config.js
)The plugin.configs["flat/standard"]
config enables a subset of the rules and superset of plugin.configs["flat/recommended"]
config that apply a subjective style.
See lib/configs/flat/standard.ts for more details.
// eslint.config.js
import * as cssPlugin from "eslint-plugin-css"
export default [
cssPlugin.configs["flat/standard"],
];
.eslintrc.*
)The plugin:css/standard
config enables a subset of the rules and superset of plugin:css/recommended
config that apply a subjective style.
See lib/configs/standard.ts for more details.
// .eslintrc.js
module.exports = {
"plugins": [
"css"
],
"extends": [
"plugin:css/standard"
]
}
Override/add specific rules configurations. See also: http://eslint.org/docs/user-guide/configuring.
// eslint.config.js
import * as cssPlugin from "eslint-plugin-css"
export default [
{
plugins: { css: cssPlugin },
rules: {
// Override/add rules settings here, such as:
"css/rule-name": "error"
}
}
];
// .eslintrc.js
module.exports = {
"plugins": [
"css"
],
"rules": {
// Override/add rules settings here, such as:
"css/rule-name": "error"
}
}
"plugin:css/all"
The plugin.configs["flat/all"]
/ plugin:css/all
config enables all rules. It's meant for testing, not for production use because it changes with every minor and major version of the plugin. Use it at your own risk.
All CSS-related rules are applied to code that passes any of the following checks:
style={ {} }
JSX attribute expression
const jsx = <div
style={ {/* JSX attribute expression */} }
/>
v-bind:style="{}"
Vue directive
<template>
<div
v-bind:style="{/* Vue directive */}"
/>
</template>
CSS definition function call for styled-components
e.g.
import styled, { css, createGlobalStyle } from 'styled-components'
styled.input({/* CSS */})
styled.input.attrs({})({/* CSS */})
css({/* CSS */})
createGlobalStyle({/* CSS */})
According to settings.css.target
settings.
However, if you want to take advantage of the rules in any of your custom objects that are CSS objects, you might need to use the special comment // @css
that marks an object in the next line as a CSS object in any file, e.g.:
// @css
const myStyle = {
height: '100px'
}
The --fix
option on the command line automatically fixes problems reported by rules which have a wrench :wrench: below.
The rules with the following star :star: are included in the plugin:css/recommended
config and the plugin:css/standard
config.
The rules with the following lipstick :lipstick: are included in the plugin:css/standard
config.
Rule ID | Description | |
---|---|---|
css/no-dupe-properties | disallow duplicate properties | :star: |
css/no-invalid-color-hex | disallow invalid hex colors | :star: |
css/no-shorthand-property-overrides | disallow shorthand properties that override related longhand properties | :star: |
css/no-unknown-property | disallow unknown properties | :star: |
css/no-unknown-unit | disallow unknown units | :star: |
Rule ID | Description | |
---|---|---|
css/named-color | enforce named colors | :wrench: |
css/no-length-zero-unit | disallow units for zero lengths | :lipstick::wrench: |
css/no-useless-color-alpha | disallow unnecessary alpha-channel transparency value | :star::wrench: |
css/prefer-reduce-shorthand-property-box-values | require reduction in box values of shorthand property | :lipstick::wrench: |
Rule ID | Description | |
---|---|---|
css/color-hex-style | enforce hex color style | :lipstick::wrench: |
css/no-number-trailing-zeros | disallow trailing zeros in numbers. | :lipstick::wrench: |
css/number-leading-zero | require or disallow a leading zero for fractional numbers less than 1 | :lipstick::wrench: |
css/property-casing | enforce specific casing for CSS properties | :lipstick::wrench: |
See Settings.
Welcome contributing!
Please use GitHub's Issues/PRs.
See CONTRIBUTING.md.
npm test
runs tests and measures coverage.npm run update
runs in order to update readme and configurations.npm run new [new rule name]
runs to create the files needed for the new rule.npm run docs:watch
starts the website locally.See the LICENSE file for license rights and limitations (MIT).
FAQs
An ESLint plugin that provides rules to verify CSS definition objects.
The npm package eslint-plugin-css receives a total of 0 weekly downloads. As such, eslint-plugin-css popularity was classified as not popular.
We found that eslint-plugin-css demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.