.stylelintrc 364 B

12345678910111213
  1. {
  2. "extends": "stylelint-config-standard",
  3. "customSyntax": "postcss-scss",
  4. "rules": {
  5. "indentation": null,
  6. "selector-pseudo-element-colon-notation": null,
  7. "function-comma-space-after": null,
  8. "no-descending-specificity": null,
  9. "declaration-bang-space-before": null,
  10. "number-leading-zero": null,
  11. "rule-empty-line-before": null
  12. }
  13. }