-
-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy path.stylelintrc.json
More file actions
19 lines (19 loc) · 675 Bytes
/
Copy path.stylelintrc.json
File metadata and controls
19 lines (19 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "stylelint-config-standard-scss",
"rules": {
"no-descending-specificity": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"alpha-value-notation": null,
"color-function-notation": null,
"media-feature-range-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"scss/comment-no-empty": null,
"scss/load-partial-extension": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/no-global-function-names": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/operator-no-newline-after": null
}
}