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.

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