1
0
mirror of https://github.com/ONLYOFFICE/onlyoffice-owncloud.git synced 2025-04-18 13:24:05 +03:00

feat: stylelint config

This commit is contained in:
rivexe 2024-07-18 12:06:12 +03:00
parent 2e1e75094b
commit 3b04ac5499

13
.stylelintrc.json Normal file
View File

@ -0,0 +1,13 @@
{
"extends": ["stylelint-config-standard", "stylelint-config-sass-guidelines"],
"rules": {
"scss/at-extend-no-missing-placeholder": null,
"max-nesting-depth": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"property-no-vendor-prefix": null,
"string-quotes": "double"
}
}