gohorsejobs/frontend/.stylelintrc.json
Tiago Yamamoto 7934afcf0d docs: complete project documentation overhaul
- Add comprehensive root README with badges, architecture diagram, and setup guide
- Update backend README with security middlewares and endpoint documentation
- Update frontend README with design system and page structure
- Update seeder-api README with generated data and credentials
- Add internal module READMEs (middleware, handlers, components)
- Document Clean Architecture layers and request flow
- Add environment variables reference table
2025-12-09 19:36:36 -03:00

27 lines
488 B
JSON

{
"extends": ["stylelint-config-standard"],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"layer",
"config",
"theme",
"custom-variant",
"import"
]
}
],
"function-no-unknown": [
true,
{
"ignoreFunctions": ["theme", "oklch"]
}
],
"import-notation": null,
"no-descending-specificity": null
}
}