.stylelintrc.js 718 B

123456789101112131415161718192021222324252627282930
  1. /* global module */
  2. module.exports = {
  3. "extends": "stylelint-config-standard-scss",
  4. "plugins": [
  5. "stylelint-order"
  6. ],
  7. "rules": {
  8. "order/order": [
  9. "custom-properties",
  10. "declarations"
  11. ],
  12. "indentation": 4,
  13. "property-no-vendor-prefix": null,
  14. "color-function-notation": null,
  15. "declaration-block-no-redundant-longhand-properties": null,
  16. "no-descending-specificity": null,
  17. "alpha-value-notation": null
  18. },
  19. "overrides": [
  20. {
  21. "files": [ "../**/themes/bookwyrm-*.scss" ],
  22. "rules": {
  23. "no-invalid-position-at-import-rule": null
  24. }
  25. }
  26. ]
  27. };