mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
build(stylelint): fix font-family-no-missing-generic-family-keyword
This commit is contained in:
parent
aaca31bdaa
commit
b8ac618558
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue