Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lostfictions/stylelint-config-lostfictions
- Owner: lostfictions
- Created: 2019-12-23T07:01:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T23:54:15.000Z (over 4 years ago)
- Last Synced: 2024-12-15T00:31:55.834Z (about 1 month ago)
- Language: JavaScript
- Size: 190 KB
- Stars: 0
- Watchers: 3
- 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"
]
}
]
}
}
```