mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 11:05:25 -04:00
20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
/* eslint-disable import/no-anonymous-default-export */
|
|
|
|
/** @type {import("stylelint").Config} */
|
|
export default {
|
|
extends: ["stylelint-config-standard", "stylelint-config-css-modules"],
|
|
rules: {
|
|
"selector-class-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"media-feature-range-notation": null,
|
|
"rule-empty-line-before": [
|
|
"always-multi-line",
|
|
{
|
|
except: ["after-single-line-comment"],
|
|
ignore: ["inside-block"],
|
|
},
|
|
],
|
|
"color-hex-length": "long",
|
|
},
|
|
};
|