initial tool setup and basic styles

This commit is contained in:
2025-09-04 14:13:55 +02:00
parent b212b4f596
commit fc8b07185d
19 changed files with 9016 additions and 68 deletions

22
stylelint.config.js Normal file
View File

@@ -0,0 +1,22 @@
export default {
extends: [
'stylelint-config-standard',
'stylelint-config-html',
'stylelint-config-clean-order'
],
overrides: [
{
files: ['**/*.{js,jsx,ts,tsx}'],
customSyntax: 'postcss-html',
},
],
rules: {
'at-rule-no-unknown': [
true,
{
ignoreAtRules: ['util', 'apply'],
},
],
'no-descending-specificity': null,
},
}