Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.stylelintrc - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a579427ca0089cb849de0a47f8de8a5c651b90ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "extends": "stylelint-config-sass-guidelines",
  "rules": {
    "string-quotes": "double",
    "selector-max-id": 1,
    "max-nesting-depth": 5,
    "selector-max-compound-selectors": 5,
    "selector-no-qualifying-type": [true, {
      "ignore": ["attribute", "class", "id"]
    }],
    "selector-class-pattern": [
      "^[a-z0-9_\\-]+$",
      {
        "message":
          "Selector should be written in lowercase with hyphens and underscores (selector-class-pattern)"
      }
    ]
  }
}