https://github.com/lostfictions/stylelint-config-lostfictions
my stylelint config for me
https://github.com/lostfictions/stylelint-config-lostfictions
Last synced: 2 days ago
JSON representation
my stylelint config for me
- Host: GitHub
- URL: https://github.com/lostfictions/stylelint-config-lostfictions
- Owner: lostfictions
- Created: 2019-12-23T07:01:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T23:54:15.000Z (about 5 years ago)
- Last Synced: 2025-06-24T03:49:28.445Z (21 days ago)
- Language: JavaScript
- Size: 190 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
]
}
]
}
}
```