Socket
Socket
Sign inDemoInstall

stylelint-config-wxss

Package Overview
Dependencies
343
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stylelint-config-wxss

The WeChat wxss syntax config for stylelint


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
6.64 kB
Created
Weekly downloads
 

Readme

Source

stylelint-config-wxss

NPM version AppVeyor codecov David

The WeChat wxss syntax config for stylelint.

Use it as is or as a foundation for your own config.

It is derived from the common rules found within a handful of CSS styleguides, including: The Idiomatic CSS Principles, Github's PrimerCSS Guidelines, Google's CSS Style Guide, Airbnb's Styleguide, and @mdo's Code Guide.

It favours flexibility over strictness for things like multi-line lists and single-line rulesets, and tries to avoid potentially divisive rules.

To see the rules that this config uses, please read the config itself.

Example

/* Error: selector-max-compound-selectors */
a b {
  top: 0rpx;
}

/* Error: length-zero-no-unit */
a {
  top: 0rpx;
}

/* Error: property-no-vendor-prefix */
a {
  -moz-columns: 2;
}

/* Error: value-no-vendor-prefix */
a {
  display: -webkit-flex;
}

Note: the config is tested against this example, as such the example contains plenty of CSS syntax, formatting and features.

Installation

npm i stylelint-config-standard stylelint-config-wxss --save-dev

Usage

If you've installed stylelint-config-wxss locally within your project, just set your stylelint config to:

{
  "extends": "stylelint-config-wxss"
}

If you've globally installed stylelint-config-wxss using the -g flag, then you'll need to use the absolute path to stylelint-config-wxss in your config e.g.

{
  "extends": "stylelint-config-wxss"
}

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.

For example, to change the indentation to tabs, turn off the number-leading-zero rule, change the property-no-unknown rule to use its ignoreAtRules option and add the unit-whitelist rule:

{
  "extends": "stylelint-config-wxss",
  "rules": {
    "indentation": "tab",
    "number-leading-zero": null,
    "property-no-unknown": [ true, {
      "ignoreProperties": [
        "composes"
      ]
    }],
    "unit-whitelist": ["em", "rem", "s"]
  }
}

License

Keywords

FAQs

Last updated on 02 Jan 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc