mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* chore(deps): update linters [skip netlify] * style: value-keyword-case Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: ylemkimon <y@ylem.kim>
23 lines
593 B
Plaintext
23 lines
593 B
Plaintext
{
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"at-rule-no-vendor-prefix": null,
|
|
"font-family-name-quotes": "always-where-required",
|
|
"indentation": 4,
|
|
"number-max-precision": 6,
|
|
"property-no-vendor-prefix": null,
|
|
"selector-class-pattern": null,
|
|
"value-no-vendor-prefix": null,
|
|
"value-keyword-case": ["lower", {"camelCaseSvgKeywords": true}],
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.less"],
|
|
"customSyntax": "postcss-less",
|
|
}
|
|
],
|
|
"ignoreFiles": [
|
|
"**/*.min.css"
|
|
]
|
|
}
|