.stylelintrc 965 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "extends": [
  3. "stylelint-config-twbs-bootstrap"
  4. ],
  5. "rules": {
  6. "declaration-no-important": null,
  7. "declaration-property-value-disallowed-list": {
  8. "border": "none",
  9. "outline": "none"
  10. },
  11. "function-disallowed-list": [
  12. "calc",
  13. "lighten",
  14. "darken"
  15. ],
  16. "keyframes-name-pattern": null,
  17. "property-disallowed-list": [
  18. "border-radius",
  19. "border-top-left-radius",
  20. "border-top-right-radius",
  21. "border-bottom-right-radius",
  22. "border-bottom-left-radius",
  23. "transition"
  24. ],
  25. "scss/dollar-variable-default": [
  26. true,
  27. {
  28. "ignore": "local"
  29. }
  30. ],
  31. "scss/selector-no-union-class-name": true,
  32. "selector-max-class": null,
  33. "selector-max-combinators": null,
  34. "selector-max-compound-selectors": null,
  35. "selector-max-id": null,
  36. "selector-max-specificity": null,
  37. "selector-max-type": null,
  38. "selector-no-qualifying-type": null
  39. }
  40. }