You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.stylelintrc 940B

12345678910111213141516171819202122232425262728293031
  1. extends: stylelint-config-standard
  2. overrides:
  3. - files: ["**/*.less"]
  4. customSyntax: postcss-less
  5. rules:
  6. alpha-value-notation: null
  7. at-rule-empty-line-before: null
  8. block-closing-brace-empty-line-before: null
  9. color-function-notation: null
  10. color-hex-length: null
  11. comment-empty-line-before: null
  12. declaration-block-no-redundant-longhand-properties: null
  13. declaration-block-single-line-max-declarations: null
  14. declaration-empty-line-before: null
  15. hue-degree-notation: null
  16. indentation: 2
  17. max-line-length: null
  18. no-descending-specificity: null
  19. no-invalid-position-at-import-rule: null
  20. number-leading-zero: never
  21. number-max-precision: null
  22. property-no-vendor-prefix: null
  23. rule-empty-line-before: null
  24. selector-class-pattern: null
  25. selector-id-pattern: null
  26. selector-pseudo-element-colon-notation: double
  27. shorthand-property-no-redundant-values: true
  28. string-quotes: null
  29. value-no-vendor-prefix: null