angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

.stylelintrc.json (425B)


      1 {
      2 	"extends": [
      3 		"@wordpress/stylelint-config/scss"
      4 	],
      5 	"rules": {
      6 		"selector-class-pattern": null,
      7 		"font-weight-notation": null,
      8 		"selector-type-no-unknown": null,
      9 		"max-line-length": null,
     10 		"at-rule-empty-line-before": null,
     11 		"selector-pseudo-element-colon-notation": null,
     12 		"number-leading-zero": null,
     13 		"no-descending-specificity": null,
     14 		"length-zero-no-unit": [true, {"ignore": ["custom-properties"]}]
     15 	}
     16 }