Skip to content

Commit

Permalink
Merge pull request #303 from emulsify-ds/fix-stylelint-issues
Browse files Browse the repository at this point in the history
Fix(stylelint issues): Adjusting stylelint rule settings.
  • Loading branch information
callinmullaney authored Jan 29, 2024
2 parents 57b24c1 + b1f955a commit 5ad67ab
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@
],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-empty-line-before": [
"always",
{
"ignoreAtRules": [
"content",
"each",
"else",
"extend",
"forward",
"function",
"if",
"import",
"include",
"mixin",
"return",
"use",
"media"
]
}
],
"at-rule-no-unknown": [
true,
{
Expand All @@ -27,9 +47,12 @@
}
],
"function-no-unknown": null,
"value-keyword-case": null,
"import-notation": null,
"media-feature-range-notation": null,
"prettier/prettier": true,
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"selector-not-notation": null
"selector-not-notation": null,
"value-keyword-case": null
}
}

0 comments on commit 5ad67ab

Please sign in to comment.