add stylint

This commit is contained in:
creations 2025-03-18 21:59:44 -04:00
parent 6254795dd2
commit a52be45907
Signed by: creations
GPG key ID: 8F553AA4320FC711
3 changed files with 23 additions and 1 deletions

9
stylelint.config.js Normal file
View file

@ -0,0 +1,9 @@
/** @type {import('stylelint').Config} */
export default {
extends: ["stylelint-config-standard"],
rules: {
"color-function-notation": "modern",
"font-family-name-quotes": "always-where-required",
"declaration-empty-line-before": "never",
},
};