Revision 211ae2a789bac35083c3345ccd9a360c580a6413 authored by Dmitry Kruchinin on 21 January 2022, 10:21:37 UTC, committed by GitHub on 21 January 2022, 10:21:37 UTC
* Update the commands, utils. Case 108 adaptation

* Added/updated tests for ellipse
1 parent 3c750d4
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