.stylelintrc.json 686 B

1234567891011121314151617181920212223
  1. {
  2. "extends": ["stylelint-config-standard-scss"],
  3. "plugins": [
  4. "./stylelint-rules/no-themed-vars-in-root.mjs",
  5. "./stylelint-rules/themed-custom-property-suffix.mjs"
  6. ],
  7. "rules": {
  8. "function-url-quotes": null,
  9. "no-descending-specificity": null,
  10. "scss/at-extend-no-missing-placeholder": null,
  11. "scss/operator-no-newline-after": null,
  12. "property-no-vendor-prefix": [true, { "ignoreProperties": ["mask-image"] }],
  13. "overleaf/no-themed-vars-in-root": true
  14. },
  15. "overrides": [
  16. {
  17. "files": ["frontend/stylesheets/abstracts/themes-common-variables.scss"],
  18. "rules": {
  19. "overleaf/themed-custom-property-suffix": true
  20. }
  21. }
  22. ]
  23. }