.stylelintrc.json 317 B

12345678910
  1. {
  2. "extends": ["stylelint-config-standard-scss"],
  3. "rules": {
  4. "function-url-quotes": null,
  5. "no-descending-specificity": null,
  6. "scss/at-extend-no-missing-placeholder": null,
  7. "scss/operator-no-newline-after": null,
  8. "property-no-vendor-prefix": [true, { "ignoreProperties": ["mask-image"] }]
  9. }
  10. }