mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 21:47:35 +00:00
The app build can sometimes fail because stylelint linter warns about css font files in public/assets/fonts. We do not need to lint these files as they are third-party files.
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
module.exports = {
|
|
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
|
|
rules: {
|
|
'custom-property-pattern': null,
|
|
'selector-class-pattern': null,
|
|
'no-descending-specificity': null,
|
|
},
|
|
};
|