build(stylelint): fix font-family-no-missing-generic-family-keyword

This commit is contained in:
blyedev 2025-01-03 20:16:27 +01:00 committed by Johannes Millan
parent aaca31bdaa
commit b8ac618558
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,10 @@ export default {
'no-empty-source': null,
'block-no-empty': [true, { severity: 'warning' }],
'no-descending-specificity': null,
'font-family-no-missing-generic-family-keyword': [
true,
{ ignoreFontFamilies: ['Material Icons'] },
],
'selector-type-no-unknown': null, // stylelint doesn't recognize angular components
'scss/comment-no-empty': null, // allow for double slash multiline comments
'scss/load-no-partial-leading-underscore': null, // this project uses underscored files

View file

@ -13,7 +13,7 @@ app-root,
//font-family: 'Montserrat', 'Roboto', sans-serif;
//font-family: 'Open Sans', sans-serif;
//font-family: 'Roboto', sans-serif;
font-family: 'Roboto', 'Comic Sans MS';
font-family: 'Roboto', 'Comic Sans MS', sans-serif;
}
html {