Revision 78363b871345b4b3aa76167eecf76ee995e4e65b authored by Chris on 02 November 2021, 11:57:39 UTC, committed by GitHub on 02 November 2021, 11:57:39 UTC
1 parent 5841dd3
Raw File
.stylelintrc.json
{
  "extends": "stylelint-config-standard",
  "rules": {
    "indentation": 4,
    "value-keyword-case": null,
    "selector-combinator-space-after": null,
    "no-descending-specificity": null,
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": ["extend"]
      }
    ],
    "selector-type-no-unknown": [
      true,
      {
        "ignoreTypes": ["first-child"]
      }
    ]
  },
  "ignoreFiles": ["**/*.js", "**/*.ts", "**/*.py"]
}
back to top