Skip to content

Commit

Permalink
Update project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorSoroka07 committed Nov 3, 2024
1 parent fb1f94e commit 0db9aa9
Show file tree
Hide file tree
Showing 15 changed files with 4,488 additions and 3,423 deletions.
48 changes: 19 additions & 29 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-order"
],
"plugins": ["stylelint-order"],
"rules": {
"selector-class-pattern": [
"^[a-z]([-]?[a-z0-9]+)*(__[a-z0-9]([-]?[a-z0-9]+)*)?(--[a-z0-9]([-]?[a-z0-9]+)*)?$",
Expand All @@ -14,12 +12,18 @@
"scss/at-mixin-argumentless-call-parentheses": "always",
"no-descending-specificity": null,
"alpha-value-notation": "number",
"value-keyword-case": ["lower", {
"camelCaseSvgKeywords": true
}],
"property-no-vendor-prefix": [true, {
"ignoreProperties": ["background-clip"]
}],
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
],
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["background-clip"]
}
],
"keyframes-name-pattern": "[a-z]+([A-Z])?",
"scss/at-extend-no-missing-placeholder": null,
"selector-not-notation": "simple",
Expand Down Expand Up @@ -52,25 +56,15 @@
"rules"
],
"order/properties-order": [
["all",
[
"all",
{
"groupName": "Position",
"properties": [
"position",
"inset",
"top",
"right",
"bottom",
"left",
"z-index"
]
"properties": ["position", "inset", "top", "right", "bottom", "left", "z-index"]
},
{
"groupName": "BoxModel",
"properties": [
"box-sizing",
"display"
]
"properties": ["box-sizing", "display"]
},
{
"groupName": "Layout",
Expand All @@ -92,6 +86,7 @@
"justify-content",
"justify-items",
"justify-self",
"place-content",
"order"
]
},
Expand Down Expand Up @@ -251,12 +246,7 @@
},
{
"groupName": "ListStyle",
"properties": [
"list-style",
"list-style-type",
"list-style-position",
"list-style-image"
]
"properties": ["list-style", "list-style-type", "list-style-position", "list-style-image"]
},
{
"groupName": "Table",
Expand Down
Loading

0 comments on commit 0db9aa9

Please sign in to comment.