1
0
Fork 0
hugo-paper/.stylelintrc.js

13 lines
342 B
JavaScript
Raw Permalink Normal View History

2021-08-23 22:07:54 +02:00
module.exports = {
2022-06-30 19:15:59 +02:00
extends: ['stylelint-config-one'],
2021-08-23 22:07:54 +02:00
rules: {
2022-07-18 17:36:23 +02:00
'function-no-unknown': null,
'function-url-quotes': null,
'color-function-notation': null,
'no-descending-specificity': null,
'comment-empty-line-before': null,
'comment-whitespace-inside': null,
'custom-property-empty-line-before': null,
2021-12-21 07:24:46 +01:00
},
2021-08-23 22:07:54 +02:00
};