.stylelintrc 1.1 KB

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