-
Notifications
You must be signed in to change notification settings - Fork 30
/
.stylelintrc.json
35 lines (35 loc) · 1.11 KB
/
.stylelintrc.json
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
26
27
28
29
30
31
32
33
34
35
{
"extends": ["stylelint-config-sass-guidelines", "stylelint-config-prettier"],
"files": {
"include": "**/*.scss",
"ignore": ["**/node_modules/**", "**/vendor/**"]
},
"options": {
"formatter": "stylish",
"merge-default-rules": false
},
"rules": {
"order/properties-alphabetical-order": null,
"order/order": null,
"max-nesting-depth": null,
"selector-class-pattern": [
"[a-z0-9_\\\\-]+$",
{
"message": "Selector should be written in lowercase with hyphens and possibly in BEM structure (selector-class-pattern)"
}
],
"scss/dollar-variable-pattern": null,
"scss/at-mixin-pattern": "^[a-z]+([a-zA-Z0-9]+[a-zA-Z0-9]+)?$",
"selector-max-id": null,
"rule-empty-line-before": null,
"selector-max-compound-selectors": null,
"length-zero-no-unit": null,
"scss/selector-no-redundant-nesting-selector": null,
"declaration-property-value-disallowed-list": null,
"max-line-length": 120,
"selector-no-qualifying-type": null,
"scss/at-function-pattern": null,
"property-no-vendor-prefix": null,
"color-hex-length": null
}
}