Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ source/fonts/**/sources
sources/**
source/pattern-template/_pattern-template.scss
.stylelintrc.json
node_modules/
source/css/pattern-scaffolding.css
17 changes: 11 additions & 6 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"extends": [
"stylelint-config-sass-guidelines",
"stylelint-config-prettier"
],
"extends": ["stylelint-config-standard-scss"],
"rules": {
"order/properties-alphabetical-order": null,
"scss/operator-no-newline-after": null,
"declaration-empty-line-before": null,
"selector-no-qualifying-type": null,
Expand All @@ -18,6 +14,15 @@
"scss/percent-placeholder-pattern": null,
"scss/at-mixin-pattern": null,
"scss/at-import-partial-extension": null,
"scss/dollar-variable-colon-space-after": "always-single-line"
"scss/dollar-variable-colon-space-after": "always-single-line",
"declaration-property-value-no-unknown": [
true,
{
"ignoreProperties": {
"/.+/": "/^to-[r]?em\\(\\$pxValue: \\d+\\)/"
}
}
],
"custom-property-pattern": null
}
}
Loading
Loading