Revision eb7e719dc586b4be5671b91bde060afa8c9c8ad8 authored by Ferdinand Niedermann on 12 January 2022, 11:49:36 UTC, committed by GitHub on 12 January 2022, 11:49:36 UTC
* Make user-data-permission-fix optional

* Update CHANGELOG.md

* Update CHANGELOG.md

Co-authored-by: u231555 <ferdinand.niedermann@sbb.ch>
Co-authored-by: Nikita Manovich <nikita.manovich@intel.com>
Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com>
1 parent 40f05b2
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