mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 03:08:40 +00:00
* chore(deps): update linters [skip netlify] * chore: add missing peer dependencies * style: update styelint Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: ylemkimon <y@ylem.kim>
22 lines
520 B
Plaintext
22 lines
520 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,
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.less"],
|
|
"customSyntax": "postcss-less",
|
|
}
|
|
],
|
|
"ignoreFiles": [
|
|
"**/*.min.css"
|
|
]
|
|
}
|