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.yaml 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. extends: stylelint-config-standard
  2. plugins:
  3. - stylelint-declaration-strict-value
  4. overrides:
  5. - files: ["**/*.less"]
  6. customSyntax: postcss-less
  7. - files: ["**/*.less"]
  8. rules:
  9. scale-unlimited/declaration-strict-value: [color, {
  10. ignoreValues: /^(inherit|transparent|unset|initial)$/
  11. }]
  12. - files: ["**/chroma/*", "**/codemirror/*", "**/standalone/*", "**/console/*"]
  13. rules:
  14. scale-unlimited/declaration-strict-value: null
  15. rules:
  16. alpha-value-notation: null
  17. at-rule-empty-line-before: null
  18. block-closing-brace-empty-line-before: null
  19. color-function-notation: null
  20. color-hex-length: null
  21. comment-empty-line-before: null
  22. declaration-block-no-redundant-longhand-properties: null
  23. declaration-block-single-line-max-declarations: null
  24. declaration-empty-line-before: null
  25. function-no-unknown: null
  26. hue-degree-notation: null
  27. import-notation: string
  28. indentation: 2
  29. max-line-length: null
  30. no-descending-specificity: null
  31. no-invalid-position-at-import-rule: null
  32. number-leading-zero: never
  33. number-max-precision: null
  34. property-no-vendor-prefix: null
  35. rule-empty-line-before: null
  36. selector-class-pattern: null
  37. selector-id-pattern: null
  38. selector-pseudo-element-colon-notation: double
  39. shorthand-property-no-redundant-values: true
  40. string-quotes: null
  41. value-no-vendor-prefix: null