Added Prettier&Linter

This commit is contained in:
2025-11-12 12:58:15 +01:00
parent b18d8d6477
commit 9cecb48d34
13 changed files with 1565 additions and 50 deletions

13
stylelint.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
const stylelintConfig = {
extends: [
'stylelint-config-standard',
'stylelint-config-clean-order',
'stylelint-config-html',
],
rules: {
'declaration-block-no-redundant-longhand-properties': null,
'no-descemdomg-specificity': null,
'selector-class-pattern': null,
},
'at-rule-no-unknown': [true],
};