Skip to content

maximpostnikov/stylelint-config-yandex-plus-order

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yandex+ Property Order

npm version github issues

A stylelint config that sorts CSS properties way csscomb.js Yandex preset.

This package is based on stylelint-order-config-yandex, but it has not been updated for a long time due to the lack of updates in the configurations for csscomb.js. This configuration will be maximally supported, especially when new css properties appear, for example, support for grid properties has already been added.

Usage

  1. Add stylelint, stylelint-order and this package to your project:
    npm install --save-dev stylelint stylelint-order stylelint-config-yandex-plus-order
  2. Configure your stylelint configuration file to extend this package:
    module.exports = {
      extends: ['stylelint-config-yandex-plus-order'],
      rules: {
        // Add overrides and additional rules here
      }
    }