mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
7873bf7f1c
* fix: arrow style * fix: raise arrow z-index * fix: fix defualt arrow color * fix: mix shadow * chore: code clean * chore: code clean * fix: use fadeout instead * test: fix style lint
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-rational-order",
|
|
"stylelint-config-prettier"
|
|
],
|
|
"customSyntax": "postcss-less",
|
|
"plugins": ["stylelint-declaration-block-no-ignored-properties"],
|
|
"rules": {
|
|
"function-name-case": ["lower", { "ignoreFunctions": ["/colorPalette/"] }],
|
|
"function-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreFunctions": [
|
|
"fade",
|
|
"fadeout",
|
|
"tint",
|
|
"darken",
|
|
"ceil",
|
|
"fadein",
|
|
"floor",
|
|
"unit",
|
|
"shade",
|
|
"lighten",
|
|
"percentage",
|
|
"-",
|
|
"~`colorPalette"
|
|
]
|
|
}
|
|
],
|
|
"no-descending-specificity": null,
|
|
"no-invalid-position-at-import-rule": null,
|
|
"declaration-empty-line-before": null,
|
|
"keyframes-name-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"number-max-precision": 8,
|
|
"alpha-value-notation": "number",
|
|
"color-function-notation": "legacy",
|
|
"selector-class-pattern": null,
|
|
"selector-id-pattern": null
|
|
},
|
|
"ignoreFiles": ["components/style/color/{bezierEasing,colorPalette,tinyColor}.less"]
|
|
}
|