🙈(frontend) ignore public/assets/fonts with stylelint
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.
This commit is contained in:
3
src/frontend/apps/impress/.stylelintignore
Normal file
3
src/frontend/apps/impress/.stylelintignore
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
out/**/*
|
||||||
|
public/assets/fonts/**/*
|
||||||
|
node_modules/**/*
|
||||||
@@ -5,5 +5,4 @@ module.exports = {
|
|||||||
'selector-class-pattern': null,
|
'selector-class-pattern': null,
|
||||||
'no-descending-specificity': null,
|
'no-descending-specificity': null,
|
||||||
},
|
},
|
||||||
ignoreFiles: ['out/**/*'],
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user