1
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-07-26 12:26:54 +08:00
hello-theme/.stylelintrc
2026-06-22 10:17:27 -07:00

26 lines
537 B
Text

{
"extends": "@wordpress/stylelint-config",
"rules": {
"selector-class-pattern": null,
"selector-id-pattern": null
},
"overrides": [
{
"files": ["**/*.scss"],
"customSyntax": "postcss-scss",
"plugins": ["stylelint-scss"],
"rules": {
"at-rule-no-unknown": null,
"no-descending-specificity": null,
"scss/at-rule-no-unknown": true
}
}
],
"ignoreFiles": [
"**/node_modules/**",
"**/vendor/**",
"assets/**",
"coverage/**",
"tests/**"
]
}