.stylelintrc 890 B

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