You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.stylelintrc.json 719B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "stylelint-config-standard",
  3. "overrides": [
  4. {
  5. "files": ["**/*.html"],
  6. "customSyntax": "postcss-html"
  7. },
  8. {
  9. "files": ["**/*.js"],
  10. "customSyntax": "@stylelint/postcss-css-in-js"
  11. }
  12. ],
  13. "ignoreFiles": [
  14. "**/*.min.css",
  15. "**/*.min.js",
  16. "interface/css/d3evolution.css",
  17. "interface/css/nprogress.css",
  18. "interface/css/prism.css"
  19. ],
  20. "rules": {
  21. "at-rule-empty-line-before": null,
  22. "color-hex-length": null,
  23. "comment-empty-line-before": null,
  24. "indentation": 4,
  25. "number-leading-zero": null,
  26. "rule-empty-line-before": null
  27. }
  28. }