.stylelintrc 1021 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "extends": [
  3. "stylelint-config-standard",
  4. "./node_modules/prettier-stylelint/config.js"
  5. ],
  6. "rules": {
  7. "comment-empty-line-before": null,
  8. "declaration-empty-line-before": null,
  9. "function-comma-newline-after": null,
  10. "function-name-case": null,
  11. "function-parentheses-newline-inside": null,
  12. "function-max-empty-lines": null,
  13. "function-whitespace-after": null,
  14. "indentation": null,
  15. "number-leading-zero": null,
  16. "number-no-trailing-zeros": null,
  17. "rule-empty-line-before": null,
  18. "selector-combinator-space-after": null,
  19. "selector-list-comma-newline-after": null,
  20. "selector-pseudo-element-colon-notation": null,
  21. "unit-no-unknown": null,
  22. "value-list-max-empty-lines": null,
  23. "string-no-newline": null,
  24. "selector-type-no-unknown": null,
  25. "no-descending-specificity": null,
  26. "selector-pseudo-element-no-unknown": [
  27. true,
  28. {
  29. "ignorePseudoElements": [
  30. "ng-deep"
  31. ]
  32. }
  33. ]
  34. }
  35. }