{"id":19217470,"url":"https://github.com/houdinigraphql/houdini-plugin-lint","last_synced_at":"2026-06-25T18:30:20.692Z","repository":{"id":217589898,"uuid":"626770934","full_name":"HoudiniGraphql/houdini-plugin-lint","owner":"HoudiniGraphql","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-24T13:17:42.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-16T12:02:03.756Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HoudiniGraphql.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-04-12T06:06:47.000Z","updated_at":"2023-04-12T08:03:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"f9d2b4fc-cf46-42d6-917b-6d85c9006861","html_url":"https://github.com/HoudiniGraphql/houdini-plugin-lint","commit_stats":{"total_commits":4,"total_committers":1,"mean_commits":4.0,"dds":0.0,"last_synced_commit":"d1c9791d7425835c9aedaa3b917f166d5f5440aa"},"previous_names":["houdinigraphql/houdini-plugin-lint"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoudiniGraphql%2Fhoudini-plugin-lint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoudiniGraphql%2Fhoudini-plugin-lint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoudiniGraphql%2Fhoudini-plugin-lint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HoudiniGraphql%2Fhoudini-plugin-lint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HoudiniGraphql","download_url":"https://codeload.github.com/HoudiniGraphql/houdini-plugin-lint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240292365,"owners_count":19778311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T14:22:24.069Z","updated_at":"2026-06-25T18:30:20.632Z","avatar_url":"https://github.com/HoudiniGraphql.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_l.svg\"\u003e\n    \u003cimg height=\"140\" alt=\"Houdini's logo (dark or light)\" src=\"https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_d.svg\"\u003e\n  \u003c/picture\u003e\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n  \u003cstrong\u003e\n    The disappearing GraphQL clients.\n  \u003c/strong\u003e\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n  \u003ca href=\"https://npmjs.org/package/houdini-plugin-svelte-global-stores\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/houdini.svg\" alt=\"version\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/HoudiniGraphql/houdini/actions\"\u003e\n    \u003cimg src=\"https://github.com/HoudiniGraphql/houdini/actions/workflows/tests.yml/badge.svg\" alt=\"CI Tests\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/HoudiniGraphql/houdini\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/stars/HoudiniGraphql/houdini.svg?label=stars\" alt=\"github stars\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://npmjs.org/package/houdini\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/dm/houdini.svg\" alt=\"downloads\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/HoudiniGraphql/houdini/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/HoudiniGraphql/houdini.svg?maxAge=2592000\" alt=\"license\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n---\n\n# ➕ houdini-plugin-lint\n\nThis package provides some linting rules for houdini.\n\n## Setup\n\nTo use this plugin, add it to the list of plugins in `houdini.config.js`:\n\n```js\n/// \u003creferences types=\"houdini-plugin-svelte-lint\"\u003e\n\n/** @type {import('houdini').ConfigFile} */\nconst config = {\n  plugins: {\n    \"houdini-plugin-lint\": {},\n  },\n};\n\nexport default config;\n```\n\n## Rules\n\n### 1/ Fragment matching Component name\n\nFragments declared in a component must start with the same name as the component.\n\n✅ In `CompA.svelte` or `CompA.tsx`, Fragments must start with `CompA`.\n\n---\n\n\u003ca href=\"https://www.houdinigraphql.com\"\u003eHoudiniGraphQL.com\u003c/a\u003e 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoudinigraphql%2Fhoudini-plugin-lint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhoudinigraphql%2Fhoudini-plugin-lint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoudinigraphql%2Fhoudini-plugin-lint/lists"}