forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylelint.config.mjs
57 lines (57 loc) · 2.02 KB
/
stylelint.config.mjs
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export default {
extends: ["stylelint-config-standard-scss"],
rules: {
"no-duplicate-at-import-rules": true,
"font-family-no-duplicate-names": true,
"keyframe-block-no-duplicate-selectors": true,
"declaration-block-no-duplicate-custom-properties": null,
"declaration-block-no-duplicate-properties": true,
"block-no-empty": null,
"comment-no-empty": true,
"no-invalid-double-slash-comments": true,
"no-empty-source": true,
"at-rule-empty-line-before": null,
"rule-empty-line-before": [
"always",
{ except: ["after-single-line-comment", "first-nested"] },
],
"selector-class-pattern": null,
"custom-property-pattern": null,
"declaration-empty-line-before": "never",
"alpha-value-notation": null,
"color-function-notation": null,
"shorthand-property-no-redundant-values": null,
"declaration-block-no-redundant-longhand-properties": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"keyframes-name-pattern": null,
"selector-type-no-unknown": null,
"scss/dollar-variable-pattern": null,
"number-max-precision": null,
"selector-pseudo-element-no-unknown": null,
"declaration-block-no-shorthand-property-overrides": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/load-no-partial-leading-underscore": null,
"scss/operator-no-newline-after": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/no-global-function-names": null,
"selector-id-pattern": null,
"no-invalid-position-at-import-rule": null,
"font-family-no-missing-generic-family-keyword": null,
"scss/at-function-pattern": null,
"scss/comment-no-empty": null,
"function-linear-gradient-no-nonstandard-direction": null,
"scss/at-mixin-pattern": null,
"media-feature-range-notation": "prefix",
"property-no-vendor-prefix": [
true,
{
ignoreProperties: [
"backdrop-filter",
"text-size-adjust",
"user-select",
],
},
],
},
};