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 758B

123456789101112131415161718192021222324252627
  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. "property-no-vendor-prefix": null,
  24. "rule-empty-line-before": null,
  25. "value-no-vendor-prefix": null
  26. }
  27. }