Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {
  2. "plugins": [
  3. "stylelint-selector-bem-pattern"
  4. ],
  5. "rules": {
  6. "property-case": "lower",
  7. "selector-type-case": "lower",
  8. "no-unknown-animations":true,
  9. "indentation": "tab",
  10. "selector-max-compound-selectors": 3,
  11. "no-duplicate-selectors": true,
  12. "shorthand-property-no-redundant-values": true,
  13. "max-nesting-depth": 2,
  14. "no-descending-specificity": true,
  15. "declaration-block-no-shorthand-property-overrides": true,
  16. "declaration-block-no-duplicate-properties": [
  17. true,
  18. {
  19. "ignore": ["consecutive-duplicates"]
  20. }
  21. ],
  22. "plugin/selector-bem-pattern": {
  23. "componentName": "[a-zA-Z0-9]+$",
  24. "componentSelectors": "^(?:\\.(?:{componentName}|is[-](?:[a-zA-Z0-9-_]*))[ ]?(?:__[a-zA-Z0-9-_]+)?(?:_[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*){0,2}[ ]?)+$"
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement