CChen Fengyuanbuild: improve config
900aca61创建于 2022年2月7日历史提交
module.exports = {
  extends: 'stylelint-config-recommended-vue/scss',
  plugins: [
    'stylelint-order',
  ],
  rules: {
    'no-descending-specificity': null,
    'no-empty-source': null,
    'order/properties-alphabetical-order': true,
  },
};