generated from openforge/ionic-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
.stylelintrc.json
31 lines (31 loc) · 1.27 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
{
"extends": "stylelint-config-standard-scss",
"rules": {
"scss/at-import-partial-extension": null,
"scss/comment-no-empty": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"no-invalid-position-at-import-rule": null,
"rule-empty-line-before": null,
"selector-no-vendor-prefix": null,
"alpha-value-notation": null,
"color-function-notation": null,
"scss/no-global-function-names": null,
"value-keyword-case": null,
"shorthand-property-no-redundant-values": null,
"scss/operator-no-unspaced": null,
"declaration-block-no-redundant-longhand-properties": null,
"keyframes-name-pattern": null,
"number-max-precision": null,
"scss/dollar-variable-empty-line-before": null,
"property-no-vendor-prefix": null,
"string-quotes": "single",
"max-empty-lines": 1,
"no-duplicate-selectors": true,
"scss/dollar-variable-pattern": "^[a-z\\d](?:[a-z\\d]|-(?=[a-z\\d]))*$",
"scss/selector-no-redundant-nesting-selector": true,
"declaration-empty-line-before": null,
"selector-pseudo-element-no-unknown": null,
"unit-disallowed-list": ["px"]
}
}