1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-31 18:31:02 +00:00

Rebuild assets

And add `postcss-scss` and fixing some issues.
This commit is contained in:
Jeremy Benoist 2022-01-05 20:43:36 +01:00
parent 553e69273f
commit 9d1716c0e5
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
27 changed files with 93 additions and 137 deletions

12
stylelint.config.js Normal file
View file

@ -0,0 +1,12 @@
module.exports = {
extends: ['stylelint-config-standard'],
customSyntax: require('postcss-scss'),
plugins: ['stylelint-scss'],
rules: {
'at-rule-no-unknown': null,
'no-duplicate-selectors': null,
'font-family-no-missing-generic-family-keyword': null,
'no-descending-specificity': null,
'scss/at-rule-no-unknown': true,
},
};