mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +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,
|
'no-empty-source': null,
|
||||||
'block-no-empty': [true, { severity: 'warning' }],
|
'block-no-empty': [true, { severity: 'warning' }],
|
||||||
'no-descending-specificity': null,
|
'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
|
'selector-type-no-unknown': null, // stylelint doesn't recognize angular components
|
||||||
'scss/comment-no-empty': null, // allow for double slash multiline comments
|
'scss/comment-no-empty': null, // allow for double slash multiline comments
|
||||||
'scss/load-no-partial-leading-underscore': null, // this project uses underscored files
|
'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: 'Montserrat', 'Roboto', sans-serif;
|
||||||
//font-family: 'Open Sans', sans-serif;
|
//font-family: 'Open Sans', sans-serif;
|
||||||
//font-family: 'Roboto', sans-serif;
|
//font-family: 'Roboto', sans-serif;
|
||||||
font-family: 'Roboto', 'Comic Sans MS';
|
font-family: 'Roboto', 'Comic Sans MS', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue