weedops-devtools/linting/.stylelintrc.json
Alex 010984d461 Initial commit: Weedops dev tooling
Linting configs (PHPCS, ESLint, Stylelint), Forgejo CI pipeline,
WordPress health check, PHP linter, strain migration tool,
and Docker local dev environment.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 05:55:00 +00:00

16 lines
429 B
JSON

{
"extends": "stylelint-config-wordpress",
"rules": {
"indentation": "tab",
"string-quotes": "double",
"selector-class-pattern": null,
"no-descending-specificity": null,
"font-family-no-missing-generic-family-keyword": true,
"declaration-no-important": true,
"max-nesting-depth": 3
},
"ignoreFiles": [
"vendor/**",
"node_modules/**"
]
}