1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 21:51:50 +02:00
portfolio/.stylelintrc

14 lines
282 B
Plaintext
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
"extends": [
2018-05-13 02:20:07 +02:00
"stylelint-config-standard",
2018-06-12 00:03:01 +02:00
"stylelint-config-css-modules",
2018-05-13 02:20:07 +02:00
"./node_modules/prettier-stylelint/config.js"
2018-03-18 20:39:18 +01:00
],
"syntax": "scss",
"rules": {
"indentation": 4,
2018-11-24 17:36:16 +01:00
"number-leading-zero": "never",
"no-descending-specificity": null
2018-03-18 20:39:18 +01:00
}
}