{"id":36954341,"url":"https://github.com/dethdkn/ox-config","last_synced_at":"2026-02-16T03:23:09.446Z","repository":{"id":328055263,"uuid":"1108628425","full_name":"dethdkn/ox-config","owner":"dethdkn","description":"⚓ My Opinionated OX Config","archived":false,"fork":false,"pushed_at":"2026-01-07T13:04:41.000Z","size":80,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T21:21:18.084Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dethdkn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-02T17:46:45.000Z","updated_at":"2026-01-07T13:04:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dethdkn/ox-config","commit_stats":null,"previous_names":["dethdkn/ox-config"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/dethdkn/ox-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dethdkn%2Fox-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dethdkn%2Fox-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dethdkn%2Fox-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dethdkn%2Fox-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dethdkn","download_url":"https://codeload.github.com/dethdkn/ox-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dethdkn%2Fox-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28814359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-13T12:59:59.117Z","updated_at":"2026-01-27T14:06:21.115Z","avatar_url":"https://github.com/dethdkn.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e@dethdkn/ox-config\u003c/h1\u003e\n\u003cp align=\"center\"\u003e⚓️ My Opinionated OX Config\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n   \u003ca href=\"https://rosa.dev.br\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/check me!-👻-F28AA9\" alt=\"rosa.dev.br\"/\u003e\n   \u003c/a\u003e\n   \u003ca href=\"https://github.com/dethdkn/ox-config/blob/main/LICENSE\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/license/dethdkn/ox-config?color=%233da639\u0026logo=open%20source%20initiative\" alt=\"License\"/\u003e\n  \u003c/a\u003e\n   \u003ca href=\"https://gitmoji.dev\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67\" alt=\"Gitmoji\"/\u003e\n   \u003c/a\u003e\n\u003c/p\u003e\n\n## 🚀 Setup\n\n1. Install with your favorite package manager:\n   - **bun** : `bun add -D @dethdkn/ox-config`\n   - npm : `npm i -D @dethdkn/ox-config`\n   - pnpm : `pnpm add -D @dethdkn/ox-config`\n   - yarn : `yarn add -D @dethdkn/ox-config`\n\n2. Create a `.oxfmtrc.json` file in the project root and copy the configuration from [github.com/dethdkn/ox-config/.oxfmtrc.json](https://github.com/dethdkn/ox-config/blob/main/.oxfmtrc.json).\n\n3. Create a `.oxlintrc.json` in the project root:\n\n```json\n{\n  \"extends\": [\"./node_modules/@dethdkn/ox-config/.oxlintrc.json\"]\n}\n```\n\n4. Add lint scripts to `package.json`:\n\n```json\n{\n  \"scripts\": {\n    \"fmt\": \"oxfmt --check\",\n    \"fmt:fix\": \"oxfmt\",\n    \"lint\": \"oxlint --type-aware\",\n    \"lint:fix\": \"oxlint --type-aware --fix\"\n  }\n}\n```\n\n4. Install the [OXC VS Code extension](https://marketplace.visualstudio.com/items?itemName=oxc.oxc-vscode).\n\n5. Add the following configuration to `.vscode/settings.json`:\n\n```json\n{\n  // Use OXC as the default code formatter in VSCode\n  \"editor.defaultFormatter\": \"oxc.oxc-vscode\",\n\n  // Automatically format files whenever you save them\n  \"editor.formatOnSave\": true,\n\n  // Apply OXC auto-fix actions on save (only when explicitly configured)\n  \"editor.codeActionsOnSave\": {\n    \"source.fixAll.oxc\": \"explicit\"\n  },\n\n  // Enable type-aware linting\n  \"oxc.typeAware\": true,\n\n  // Run OXC linter automatically on type\n  \"oxc.lint.run\": \"onType\"\n}\n```\n\n## 📝 License\n\nCopyright © 2026 [Gabriel 'DethDKN' Rosa](https://github.com/dethdkn)\\\nThis project is under [MIT license](https://github.com/dethdkn/ox-config/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdethdkn%2Fox-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdethdkn%2Fox-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdethdkn%2Fox-config/lists"}