Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lostfictions/stylelint-config-lostfictions

my stylelint config for me
https://github.com/lostfictions/stylelint-config-lostfictions

Last synced: 12 days ago
JSON representation

my stylelint config for me

Awesome Lists containing this project

README

        

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

```json
{
"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"
]
}
]
}
}
```