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>
16 lines
429 B
JSON
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/**"
|
|
]
|
|
}
|