Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-baseui

Package Overview
Dependencies
Maintainers
1
Versions
711
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-baseui

ESLint rules for Base Web

  • 0.0.0-next-9ca78d5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18K
increased by27.21%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-baseui

This ESLint plugin is for developers using the Base Web component library. Mainly it attempts to:

  • Identify usage of deprecated APIs
  • Identify usage of unsupported exports
  • Identify improper usage of components
  • Identify improper styling on Block elements
  • Identify improper styling on baseui components
  • Identify shorthand properties in baseui overrides

Installation

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"]
}

Versioning

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.

Rules

RuleResponsibility
deprecated-theme-apiIdentify theme properties that are deprecated.
deprecated-component-apiIdentify components and props that are deprecated.
no-deep-importsIdentify importing unsupported modules from baseui source code.
no-block-styleIdentify instances of Block being used with style/$style instead of overrides. (not supported)
no-component-classnameIdentify instances of components being styled using className. (not supported)
no-shorthand-propertiesIdentify instances of component overrides using shorthand css properties.

Contributing

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.

License

MIT

Keywords

FAQs

Package last updated on 12 Sep 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc