This commit is contained in:
Rene Kievits
2025-12-18 01:30:52 +01:00
commit 6438660b03
78 changed files with 14230 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('stylelint').Config} */
export default {
extends: [
'stylelint-config-standard-scss',
'stylelint-config-recommended-vue'
],
ignoreFiles: [
'**/node_modules/**',
'**/dist/**',
'**/android/**'
],
rules: {
'at-rule-no-unknown': null,
'scss/at-rule-no-unknown': true,
'no-empty-source': null,
}
};