0.11.0 • Published 4 years ago

stylelint-config-lostfictions v0.11.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Here it is. You'll need to configure some rules yourself, to wit:

{
  "extends": [
    "stylelint-config-lostfictions"
  ],
  "rules": {
    "plugin/value-no-exposed-custom-properties": [
      true,
      {
        "importFrom": [
          "src/styles/vars.css"
        ]
      }
    ],
    "csstools/value-no-unknown-custom-properties": [
      true,
      {
        "importFrom": [
          "src/styles/vars.css"
        ]
      }
    ],
    "csstools/media-use-custom-media": [
      "always-known",
      {
        "importFrom": [
          "src/styles/vars.css"
        ]
      }
    ]
  }
}