Advertisement
Guest User

Untitled

a guest
May 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. options:
  2. formatter: stylish
  3. files:
  4. include: '**/*.s+(a|c)ss'
  5. # ignore:
  6. rules:
  7. # Extends
  8. extends-before-mixins: 1
  9. extends-before-declarations: 1
  10. placeholder-in-extend: 1
  11.  
  12. # Mixins
  13. mixins-before-declarations: 1
  14.  
  15. # Line Spacing
  16. one-declaration-per-line: 1
  17. empty-line-between-blocks: 0
  18. single-line-per-selector: 0
  19.  
  20. # Disallows
  21. no-color-keywords: 0
  22. no-color-literals: 0
  23. no-css-comments: 1
  24. no-debug: 1
  25. no-duplicate-properties: 1
  26. no-empty-rulesets: 1
  27. no-extends: 0
  28. no-ids: 0
  29. no-important: 0
  30. no-invalid-hex: 1
  31. no-mergeable-selectors: 1
  32. no-misspelled-properties: 1
  33. no-qualifying-elements: 0
  34. no-trailing-zero: 1
  35. no-transition-all: 1
  36. no-url-protocols: 1
  37. no-vendor-prefixes: 1
  38. no-warn: 0
  39.  
  40. # Nesting
  41. force-attribute-nesting: 0
  42. force-element-nesting: 0
  43. force-pseudo-nesting: 0
  44.  
  45. # Name Formats
  46. function-name-format: 1
  47. mixin-name-format: 1
  48. placeholder-name-format: 1
  49. variable-name-format: 1
  50.  
  51. # Style Guide
  52. border-zero: 1
  53. brace-style: 1
  54. clean-import-paths: 0
  55. empty-args: 1
  56. hex-length: 1
  57. hex-notation: 1
  58. indentation: 1
  59. leading-zero: 0
  60. nesting-depth: 1
  61. property-sort-order: 1
  62. quotes: 1
  63. shorthand-values: 0
  64. url-quotes: 1
  65. variable-for-property: 1
  66. zero-unit: 1
  67.  
  68. # Inner Spacing
  69. space-after-comma: 1
  70. space-before-colon: 1
  71. space-after-colon: 1
  72. space-before-brace: 1
  73. space-before-bang: 1
  74. space-after-bang: 1
  75. space-between-parens: 1
  76.  
  77. # Final Items
  78. trailing-semicolon: 1
  79. final-newline: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement