.stylelintrc.json 301 B

12345678910
  1. {
  2. "extends": ["stylelint-config-standard", "stylelint-config-prettier"],
  3. "rules": {
  4. "declaration-empty-line-before": null,
  5. "no-descending-specificity": null,
  6. "selector-pseudo-class-no-unknown": null,
  7. "selector-pseudo-element-colon-notation": null,
  8. "no-empty-source": null
  9. }
  10. }