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

@cybozu/stylelint-config

Package Overview
Dependencies
Maintainers
7
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cybozu/stylelint-config

A shareable stylelint config for Cybozu

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
229
decreased by-18.21%
Maintainers
7
Weekly downloads
 
Created
Source

@cybozu/stylelint-config

npm version

A shareable stylelint config for Cybozu.

What is this?

This is a stylelint rule set for Cybozu. The purpose of @cybozu/stylelint-config are following

  • Share CSS coding practices in Cybozu
  • Easy to set up and free you from dealing with updates of stylelint and its plugins.

**This is intented to use with Prettier.

The benefits to adapt this rule

You don't need to deal with updating stylelint and its plugins on your own. We'll manage the updates and provide CHANGELOG that you need to care about so that you can update it easily.

Severity

We have Error an Warning as its severity.

Error

This is a rule you must fix because the code might not follow our practices.

Warning

This is a rule you should fix because the code style might not be preferable for us.

Version policy

  1. We update a major version if changes might cause new errors.
  2. We update a minor version if changes might cause new warnings.
  3. We update a patch version if changes don't cause any new errors and warings.

How to use

Install stylelint and @cybozu/stylelint-config and put it into your .stylelintrc

% npm install --save-dev stylelint @cybozu/stylelint-config
  • .stylelintrc
{
  extends: "@cybozu/stylelint-config"
}

You can override the rules as you want.

{
  extends: "@cybozu/stylelint-config",
  rules: {
    'string-quotes': 'single',
  }
}

Support rule set

Limitations

This config doesn't support IE11, so this would suggest CSS syntaxes are incompatible with IE11.

Keywords

FAQs

Package last updated on 19 Jan 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