forked from bigcommerce/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
25 lines (25 loc) · 744 Bytes
/
Copy path.stylelintrc
File metadata and controls
25 lines (25 loc) · 744 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
25
{
"customSyntax": "postcss-scss",
"plugins": [
"@stylistic/stylelint-plugin",
"stylelint-scss"
],
"rules": {
"color-named": null,
"max-nesting-depth": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-pattern": null,
"scss/percent-placeholder-pattern": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"value-no-vendor-prefix": null,
"scss/no-global-function-names": null,
"@stylistic/indentation": 4,
"@stylistic/string-quotes": "double"
}
}