Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

stylelint-config-copilot-plugins

fuhlig94MIT1.0.0-rc.5

Opinionated Stylelint-Configuration for stylelint plugins

stylelint, linter, code-analysis, code-quality

readme

stylelint-config-copilot-plugins

Stylelint shareable config for various stylelint plugins.

Install

npm install stylelint-config-copilot-plugins --save-dev 

The following plugins are included:

Usage

Add this to your Stylelint config:

{
    "extends": "stylelint-config-copilot-plugins"
}

The plugins are already imported in the config, no need to set it in the plugins array

Example: Rename .stylelintrc.example.js to .stylelintrc.js

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[1.0.0-rc.4] - 22.04.204

  • breaking changes:
    • stylelint-itcss: remove plugin as it is not supported for Stylelint versions > 14
      • alternatively use Stylelint's overrides, e.g. to disable declaration-no-important in utilities layer
        overrides: [
          {
              files: [
                  '<path/to/utility-layer>/**/*.scss',
              ],
              rules: {
                  'declaration-no-important': null,
              },
          }
        ]
  • chore:

[1.0.0-rc.3] - 31.01.2023

  • update deps

[1.0.0-rc.2] - 16.12.2021

  • fix tagged version 0.6.2-1.0.0-rc.1.0 => 1.0.0-rc.x
  • order:
    • remove animations (analogue to transitions)
    • remove border, add border*-color
    • ignore inset

[1.0.0-rc.1] - 04.12.2021

This is the first release candidate for a stable version.

[0.6.2] - 15.08.2021

[0.6.1] - 27.01.2021

[0.6.0] - 09.01.2021

  • LICENSE: include license file from monorepo root

[0.5.0] - 06.01.2021

  • rules
    • add properties to allowlist for declaration-use-variable:
      • change background* to background-color as properties like background-repeat should not be forced to use variables
      • allow positional and size values to be used, without forcing to use variables

[0.4.2] - 27.11.2020

  • chore:
    • update dependencies

[0.4.1] - 24.10.2020

  • chore:
    • update dependencies

[0.4.0] - 19.05.2020

  • chore:
    • set minimum node version to >= 10
    • update dependencies

[0.3.7] - 24.03.2019

[0.3.6] - 04.03.2019

  • chore:
    • update deps

[0.3.5] - 17.11.2019

[0.3.3] - 14.11.2019

  • chore:
    • update to stylelint 11.1.1 (other dependencies updated to the same version as a peerDependency)

[0.3.2] - 01.10.2019

  • allow 0 auto & auto 0 wihtout variable-use

[0.3.2] - 18.09.2019

  • deps:
    • update deps

[0.3.1] - 01.09.2019

  • docs: minor changes in readme to clarify rules and imports

[0.3.0] - 21.07.2019

  • add stylelint-itcss
  • docs:
    • add reference to other stylelint-config-copilot packages

[0.1.1] - 07.07.2019

  • add README

[0.1.0] - 02.06.2019

Added

  • add config:
    • all stylelint default rules
    • opinionated config
    • add example manifest
  • add documentation
  • add test-files (fixtures)