-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
24 lines (24 loc) · 732 Bytes
/
Copy path.stylelintrc
File metadata and controls
24 lines (24 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": [
"stylelint-config-prestashop"
],
"customSyntax": "postcss-scss",
"rules": {
"declaration-colon-newline-after": null,
"function-disallowed-list": null,
"property-disallowed-list": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-class": null,
"selector-max-combinators": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-max-type": null,
"selector-no-qualifying-type": null,
"value-list-comma-newline-after": null,
"value-list-comma-space-after": null,
"scss/dollar-variable-default": null,
"scss/operator-no-newline-after": null,
"scss/percent-placeholder-pattern": null
}
}