.stylelintrc 642 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "extends": [
  3. "stylelint-config-twbs-bootstrap/scss"
  4. ],
  5. "rules": {
  6. "declaration-property-value-disallowed-list": {
  7. "border": "none",
  8. "outline": "none"
  9. },
  10. "function-disallowed-list": [
  11. "calc",
  12. "lighten",
  13. "darken"
  14. ],
  15. "property-disallowed-list": [
  16. "border-radius",
  17. "border-top-left-radius",
  18. "border-top-right-radius",
  19. "border-bottom-right-radius",
  20. "border-bottom-left-radius",
  21. "transition"
  22. ],
  23. "scss/dollar-variable-default": [
  24. true,
  25. {
  26. "ignore": "local"
  27. }
  28. ],
  29. "scss/selector-no-union-class-name": true
  30. }
  31. }