summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/.stylelintrc
blob: c48d66dca19ba5e2922a797e5e0789e923ec3352 (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
{
  "extends": "stylelint-config-sass-guidelines",
  "plugins": [
    "stylelint-declaration-use-variable"
  ],
  "rules": {
    "function-parentheses-space-inside": null,
    "indentation": null,
    "selector-no-qualifying-type": null,
    "selector-class-pattern": null,
    "selector-pseudo-element-no-unknown": null,
    "selector-max-id": null,
    "selector-max-compound-selectors": null,
    "scss/at-extend-no-missing-placeholder": null,
    "max-nesting-depth": null,
    "scss/at-import-partial-extension-blacklist": null,
    "value-no-vendor-prefix": null,
    "scss/dollar-variable-pattern": [
      "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
      "message": "Variable name should be written in lower kebab-case (scss/dollar-variable-pattern)"
    ],
    "sh-waqar/declaration-use-variable": [
      [
        "/color/",
        {
          "ignoreValues": [
            "inherit",
            "initial",
            "transparent",
            "/darken/",
            "/\\w+\\.\\$.+/"
          ]
        }
      ]
    ],
    "property-no-unknown": [
      true,
      {
        "ignoreSelectors": [":export"]
      }
    ]
  }
}