atums.world/stylelint.config.js
2025-03-18 21:59:44 -04:00

9 lines
254 B
JavaScript

/** @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",
},
};