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 968B

1234567891011121314151617181920212223242526272829303132
  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. function-no-unknown: null
  16. hue-degree-notation: null
  17. indentation: 2
  18. max-line-length: null
  19. no-descending-specificity: null
  20. no-invalid-position-at-import-rule: null
  21. number-leading-zero: never
  22. number-max-precision: null
  23. property-no-vendor-prefix: null
  24. rule-empty-line-before: null
  25. selector-class-pattern: null
  26. selector-id-pattern: null
  27. selector-pseudo-element-colon-notation: double
  28. shorthand-property-no-redundant-values: true
  29. string-quotes: null
  30. value-no-vendor-prefix: null