0.1.0 • Published 1 year ago

@ctsx/stylelint v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

@ctsx/stylelint

stylelint 代码格式化规范实践插件

功能支持

  • ✔ 自动格式化
  • ✔ 自动属性排序

使用说明

安装

npm install @ctsx/stylelint -D

添加配置文件

.stylelintrc.js

// @doc https://stylelint.io/user-guide/configure
module.exports = {
  extends: ["stylelint-config-standard", "stylelint-config-recess-order"],
  plugins: ["stylelint-order"],
  rules: {
    "selector-pseudo-class-no-unknown": [
      true,
      {
        ignorePseudoClasses: ["global"],
      },
    ],
    "selector-class-pattern": null,
  },
};

附录