🙈(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:
Anthony LC
2025-10-09 16:23:52 +02:00
parent 91eba31735
commit 8023720da3
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
out/**/*
public/assets/fonts/**/*
node_modules/**/*

View File

@@ -5,5 +5,4 @@ module.exports = {
'selector-class-pattern': null, 'selector-class-pattern': null,
'no-descending-specificity': null, 'no-descending-specificity': null,
}, },
ignoreFiles: ['out/**/*'],
}; };