Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. "plugins": ["stylelint-scss"],
  3. "rules": {
  4. "block-no-empty": true,
  5. "color-no-invalid-hex": true,
  6. "comment-empty-line-before": null,
  7. "declaration-colon-space-after": "always",
  8. "declaration-block-semicolon-newline-after": "always",
  9. "declaration-block-trailing-semicolon": "always",
  10. "indentation": 2,
  11. "max-empty-lines": 2,
  12. "max-nesting-depth": [
  13. 3,
  14. {
  15. "ignore": ["pseudo-classes"]
  16. }
  17. ],
  18. "rule-empty-line-before": [
  19. "always",
  20. {
  21. "except": ["first-nested"],
  22. "ignore": ["after-comment"]
  23. }
  24. ],
  25. "unit-whitelist": null,
  26. "scss/selector-no-redundant-nesting-selector": true,
  27. "scss/no-duplicate-dollar-variables": true
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement