.sass-lint.yml 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. files:
  2. include:
  3. - 'app/assets/stylesheets/**/*.scss'
  4. options:
  5. merge-default-rules: false
  6. rules:
  7. indentation:
  8. - 2
  9. -
  10. size: 2
  11. brace-style:
  12. - 2
  13. -
  14. style: 1tbs
  15. declarations-before-nesting: 2
  16. extends-before-declarations: 2
  17. mixins-before-declarations:
  18. - 2
  19. -
  20. exclude: breakpoint
  21. leading-zero:
  22. - 2
  23. -
  24. include: true
  25. nesting-depth:
  26. - 2
  27. -
  28. max-depth: 3
  29. no-duplicate-properties:
  30. - 2
  31. -
  32. exclude: 'background-image' # for cross-browser support
  33. no-important: 0 # TODO: go through and remove !importants where possible
  34. no-invalid-hex: 2
  35. no-misspelled-properties: 2
  36. no-trailing-whitespace: 2
  37. space-after-colon: 2
  38. space-after-comma: 2
  39. space-before-brace: 2
  40. space-before-colon:
  41. - 2
  42. -
  43. include: false
  44. space-before-bang: 2
  45. trailing-semicolon: 2
  46. url-quotes: 2