mirror of
https://github.com/openvinotoolkit/cvat.git
synced 2022-03-09 18:58:10 +03:00
23 lines
459 B
JSON
23 lines
459 B
JSON
{
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"indentation": 4,
|
|
"value-keyword-case": null,
|
|
"selector-combinator-space-after": null,
|
|
"no-descending-specificity": null,
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": ["extend"]
|
|
}
|
|
],
|
|
"selector-type-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreTypes": ["first-child"]
|
|
}
|
|
]
|
|
},
|
|
"ignoreFiles": ["**/*.js", "**/*.ts", "**/*.py"]
|
|
}
|