{"id":19977448,"url":"https://github.com/hypernym-studio/prettier-config","last_synced_at":"2025-09-19T19:32:10.167Z","repository":{"id":177334204,"uuid":"660260185","full_name":"hypernym-studio/prettier-config","owner":"hypernym-studio","description":"Hypernym's internal config for Prettier.","archived":false,"fork":false,"pushed_at":"2025-08-16T16:12:35.000Z","size":161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-16T16:48:54.961Z","etag":null,"topics":["config","configuration","esm","presets","prettier","prettier-config","shareable"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hypernym-studio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/codeowners","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://revolut.me/ivodolenc","https://paypal.me/ivodolenc"]}},"created_at":"2023-06-29T15:44:09.000Z","updated_at":"2025-08-16T16:10:09.000Z","dependencies_parsed_at":"2025-01-12T10:09:41.364Z","dependency_job_id":"a5c7ea7c-074a-4525-ab08-b751b9d28ee9","html_url":"https://github.com/hypernym-studio/prettier-config","commit_stats":null,"previous_names":["hypernym-studio/prettier-config"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/hypernym-studio/prettier-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fprettier-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fprettier-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fprettier-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fprettier-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypernym-studio","download_url":"https://codeload.github.com/hypernym-studio/prettier-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypernym-studio%2Fprettier-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275990534,"owners_count":25565653,"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","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["config","configuration","esm","presets","prettier","prettier-config","shareable"],"created_at":"2024-11-13T03:28:05.247Z","updated_at":"2025-09-19T19:32:10.162Z","avatar_url":"https://github.com/hypernym-studio.png","language":"TypeScript","funding_links":["https://revolut.me/ivodolenc","https://paypal.me/ivodolenc"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e@hypernym/prettier-config\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eHypernym's internal config for Prettier.\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/hypernym-studio/prettier-config\"\u003eRepository\u003c/a\u003e\n  \u003cspan\u003e✦\u003c/span\u003e\n  \u003ca href=\"https://www.npmjs.com/package/@hypernym/prettier-config\"\u003ePackage\u003c/a\u003e\n  \u003cspan\u003e✦\u003c/span\u003e\n  \u003ca href=\"https://github.com/hypernym-studio/prettier-config/releases\"\u003eReleases\u003c/a\u003e\n  \u003cspan\u003e✦\u003c/span\u003e\n  \u003ca href=\"https://github.com/hypernym-studio/prettier-config/discussions\"\u003eDiscussions\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cbr\u003e\n\n\u003cpre align=\"center\"\u003epnpm add -D @hypernym/prettier-config\u003c/pre\u003e\n\n\u003cbr\u003e\n\n## Usage\n\n### Formatting Commands\n\nAdd a `format` command for manual formatting (optional):\n\n```js\n// package.json\n\n{\n  \"scripts\": {\n    \"format\": \"prettier --write .\"\n  }\n}\n```\n\n### Default Config\n\n```js\n// prettier.config.mjs\n\nexport { default } from '@hypernym/prettier-config'\n```\n\n### Svelte/SvelteKit\n\n\u003e [!NOTE]\n\u003e\n\u003e Install the required `Svelte` dev dependencies before using:\n\u003e\n\u003e ```sh\n\u003e pnpm add -D prettier-plugin-svelte\n\u003e ```\n\n```js\n// prettier.config.mjs\n\nexport { default } from '@hypernym/prettier-config/svelte'\n```\n\n## Custom Setup\n\n```js\n// prettier.config.mjs\n\nimport base from '@hypernym/prettier-config'\n\n/** @type {import(\"prettier\").Config} */\nconst config = {\n  ...base,\n  singleQuote: false,\n  // ...\n}\n\nexport default config\n```\n\n## License\n\nDeveloped in 🇭🇷 Croatia, © Hypernym Studio.\n\nReleased under the [MIT](LICENSE.txt) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypernym-studio%2Fprettier-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypernym-studio%2Fprettier-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypernym-studio%2Fprettier-config/lists"}