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

eslint-plugin-styled

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-styled

Plugin to check babel macro import for styled-components CSSProp.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
41
decreased by-37.88%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-styled

A simple plugin to check if you did not forget to import babel macro when using css prop of styled-components - or to remove such import when css prop is not used.

Installation

npm install -D eslint-plugin-styled

Config

Add to your .eslintrc

{
  "plugins": ["styled"],
  "rules": {
    "styled/require-macro": [2],
    "styled/unused-macro": [2]
  }
}

Options

There are additional options available.

prop defines name of the prop (checks are case-insensitive). For styled-components it is css.

import defines import path. Maybe you would want to use it with some other lib or something. It is styled-components/macro by default.

"rules": {
  "styled/require-macro": [2,
    {
      "prop": "css",
      "import": "styled-components/macro"
    }
  ],
  "styled/unused-macro": [2,
    {
      "prop": "css",
      "import": "styled-components/macro"
    }
  ]
}

Disclaimer

There is no tests here, nor proper meta... Maybe I will add it later. Feel free to pull-request these.

This plugin seeks for import from required file - first import will be used. It won't check for named imports or whatever - there is an assumption that macro file is used only for macro import "styled-components/macro.

I use this to use styled-components with vite and vite-plugin-babel-macros

Keywords

FAQs

Package last updated on 06 May 2022

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