0.4.1 • Published 12 months ago

stylelint-config-woda v0.4.1

Weekly downloads
2
License
MIT
Repository
github
Last release
12 months ago

stylelint-config-woda

The standard shareable config for stylelint used by Woda.

Extends stylelint-config-standard which in turn is an extension of stylelint-config-recommended.

stylelint-config-standard turns on additional rules to enforce the common stylistic conventions found within a handful of CSS styleguides, including:

Additionally we set some custom rules that you can check out in the main config file.

Order

This config adds additional order rules utilizing the stylelint plugin stylelint-order.

To see the order specific rules, please check out out the order config.

To see the property order specific rules, please check out the property order config.

The config sorts related property declarations by grouping together following the order:

  1. Grid Layout
  2. Flexbox
  3. Positioning
  4. Textual Content
  5. Box Model
  6. Background
  7. Special Content Types
  8. Animations

SCSS

This config also adds additional SCSS rules utilizing the stylelint plugin stylelint-sass.

The SASS rules are losely based on sass-guidelin.es and stylelint-config-sass-guidelines

To see the SASS specific rules that this config uses, please check out the scss config.

Installation

If using yarn

yarn add --dev stylelint-config-woda stylelint

or with npm

npm i --save-dev stylelint-config-woda stylelint

Usage

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

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

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

{
  "extends": "/absolute/path/to/stylelint-config-woda"
}

Since stylelint 9.7.0, you can simply use the globally installed configuration name instead of the absolute path:

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

Customization

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

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

{
  "extends": "stylelint-config-woda",
  "rules": {
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": ["extends", "ignores"]
      }
    ],
    "indentation": "tab",
    "number-leading-zero": null,
    "unit-whitelist": ["em", "rem", "s"]
  }
}

Visual Studio Code Integration

Install the stylelint-plus plugin for Visual Studio Code.

To turn on autofixing on file save add "stylelint.autoFixOnSave": true to the settings.

PhpStorm and WebStorm integration

To enable autofixing on file save add a new watcher in Tools > Watchers with following settings

  • Files to Watch
    • File type: SCSS Style Sheet
    • Scope: Project Files
  • Tool to Run on Changes
    • Program: /usr/local/bin/stylelint
    • Arguments: --fix $FilePath$
    • Output paths to refresh: $FilePath$
    • Working directory: $ProjectFileDir$
    • Environment variables: COMPILE_PARTIAL=true
  • Advanced Options
    • Disable all but Trigger the watcher regardless of syntax errors

Docs

Changelog

License

1.0.0-9

12 months ago

1.0.0-7

2 years ago

1.0.0-6

2 years ago

1.0.0-8

2 years ago

1.0.0-5

2 years ago

1.0.0-4

2 years ago

1.0.0-1

2 years ago

1.0.0-0

2 years ago

1.0.0-3

2 years ago

1.0.0-2

2 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago