Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
eslint-plugin-baseui
Advanced tools
eslint-plugin-baseui
This ESLint plugin is for developers using the Base Web component library. Mainly it attempts to:
Assuming you already have ESLint installed, run:
# npm
npm install eslint-plugin-baseui --save-dev
# yarn
yarn add eslint-plugin-baseui --dev
Then add it to your ESLint configuration:
{
"plugins": [
// ...
"baseui",
],
"rules": {
// ...
'baseui/deprecated-theme-api': "warn",
'baseui/deprecated-component-api': "warn",
'baseui/no-deep-imports': "warn",
'baseui/no-block-style': "warn",
'baseui/no-component-classname': "warn",
'baseui/no-shorthand-properties': "warn",
}
}
Or extend the recommended config
{
"extends": ["plugin:baseui/recommended"]
}
To get linting specific to your version of baseui
, simply install the matching version of eslint-plugin-baseui
.
{
"dependencies": {
"baseui": "10.0.0"
},
"devDependencies": {
"eslint-plugin-baseui": "10.0.0"
}
}
We sync the versions for each package, so you shouldn't have to worry about it.
ℹ️ Note that the first available version of this package is 9.41.0
.
Rule | Responsibility |
---|---|
deprecated-theme-api | Identify theme properties that are deprecated. |
deprecated-component-api | Identify components and props that are deprecated. |
no-deep-imports | Identify importing unsupported modules from baseui source code. |
no-block-style | Identify instances of Block being used with style/$style instead of overrides. (not supported) |
no-component-classname | Identify instances of components being styled using className. (not supported) |
no-shorthand-properties | Identify instances of component overrides using shorthand css properties. |
To publish new versions of this package all you need to do is release a new version of baseui
. Our deploy script will publish a new version of the eslint plugin which matches the new version of baseui
. Note, this also means every version of baseui
will publish a corresponding version of eslint-plugin-baseui
, even if there are no changes to the package.
MIT
FAQs
ESLint rules for Base Web
The npm package eslint-plugin-baseui receives a total of 11,554 weekly downloads. As such, eslint-plugin-baseui popularity was classified as popular.
We found that eslint-plugin-baseui demonstrated a not healthy version release cadence and project activity because the last version was released 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 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.