.sass-lint.yml 771 B

12345678910111213141516171819202122232425262728
  1. options:
  2. merge-default-rules: true
  3. max-warnings: 0
  4. files:
  5. include: 'content-src/**/*.scss'
  6. rules:
  7. class-name-format: 0
  8. extends-before-declarations: 2
  9. extends-before-mixins: 2
  10. force-element-nesting: 0
  11. force-pseudo-nesting: 0
  12. hex-notation: [2, {style: uppercase}]
  13. indentation: [2, {size: 2}]
  14. leading-zero: [2, {include: true}]
  15. mixins-before-declarations: [2, {exclude: [breakpoint, mq]}]
  16. nesting-depth: [2, {max-depth: 4}]
  17. no-debug: 1
  18. no-disallowed-properties: [1, {properties: [margin-left, margin-right, text-transform]}]
  19. no-duplicate-properties: 2
  20. no-misspelled-properties: [2, {extra-properties: [-moz-context-properties]}]
  21. no-url-domains: 0
  22. no-vendor-prefixes: 0
  23. no-warn: 1
  24. placeholder-in-extend: 2
  25. property-sort-order: 0