aboutsummaryrefslogtreecommitdiff
path: root/.stylelintrc.json
blob: 267378203a98e699d73ddafbfd810942b2916f3c (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
    "extends": "stylelint-config-standard",
    "rules": {
        "alpha-value-notation": null,
        "at-rule-empty-line-before": null,
        "at-rule-no-vendor-prefix": null,
        "block-closing-brace-empty-line-before": null,
        "block-closing-brace-newline-after": null,
        "block-closing-brace-newline-before": null,
        "block-closing-brace-space-before": null,
        "block-no-empty": null,
        "block-opening-brace-newline-after": null,
        "block-opening-brace-space-after": null,
        "block-opening-brace-space-before": null,
        "color-function-notation": null,
        "color-hex-case": null,
        "color-hex-length": null,
        "color-no-invalid-hex": null,
        "comment-empty-line-before": null,
        "comment-whitespace-inside": null,
        "custom-property-empty-line-before": null,
        "declaration-bang-space-after": null,
        "declaration-bang-space-before": null,
        "declaration-block-no-duplicate-properties": null,
        "declaration-block-no-redundant-longhand-properties": null,
        "declaration-block-no-shorthand-property-overrides": null,
        "declaration-block-semicolon-newline-after": null,
        "declaration-block-semicolon-space-before": null,
        "declaration-block-single-line-max-declarations": null,
        "declaration-block-trailing-semicolon": null,
        "declaration-colon-newline-after": null,
        "declaration-colon-space-after": null,
        "declaration-colon-space-before": null,
        "declaration-empty-line-before": null,
        "font-family-name-quotes": null,
        "font-family-no-missing-generic-family-keyword": null,
        "function-comma-space-after": null,
        "function-comma-space-before": null,
        "function-name-case": null,
        "function-no-unknown": null,
        "function-parentheses-newline-inside": null,
        "function-parentheses-space-inside": null,
        "function-url-quotes": null,
        "hue-degree-notation": null,
        "indentation": null,
        "keyframes-name-pattern": null,
        "length-zero-no-unit": null,
        "max-empty-lines": null,
        "max-line-length": null,
        "media-feature-name-no-vendor-prefix": null,
        "no-descending-specificity": null,
        "no-duplicate-selectors": null,
        "no-empty-first-line": null,
        "no-empty-source": null,
        "no-eol-whitespace": null,
        "no-extra-semicolons": null,
        "no-invalid-position-at-import-rule": null,
        "no-irregular-whitespace": null,
        "no-missing-end-of-source-newline": null,
        "number-leading-zero": null,
        "number-max-precision": null,
        "number-no-trailing-zeros": null,
        "property-no-vendor-prefix": null,
        "rule-empty-line-before": null,
        "selector-attribute-quotes": null,
        "selector-class-pattern": null,
        "selector-combinator-space-after": null,
        "selector-combinator-space-before": null,
        "selector-descendant-combinator-no-non-space": null,
        "selector-id-pattern": null,
        "selector-list-comma-newline-after": null,
        "selector-no-vendor-prefix": null,
        "selector-not-notation": null,
        "selector-pseudo-element-colon-notation": null,
        "shorthand-property-no-redundant-values": null,
        "string-quotes": null,
        "value-keyword-case": null,
        "value-list-max-empty-lines": null,
        "value-no-vendor-prefix": null,
        "custom-property-pattern": [
            "^([a-z][a-z0-9]*-+)*[a-z0-9]+$",
            {"message": "Expected custom property name to be kebab-case-ish (multiple dashes are allowed"}
        ]
    },
    "overrides": [
        {
            "files": ["**/*.scss"],
            "customSyntax": "postcss-scss",
            "rules": {
                "at-rule-no-unknown": null
            }
        }
    ],
    "ignoreFiles": [
        "resource/assets/stylesheets/jquery-ui.structure.css",
        "resources/assets/stylesheets/vendor/*"
    ]
}