{"id":50794302,"url":"https://github.com/stella/tooling","last_synced_at":"2026-06-12T13:31:52.634Z","repository":{"id":361622759,"uuid":"1255146508","full_name":"stella/tooling","owner":"stella","description":"Shared TypeScript and oxlint configuration for stella packages","archived":false,"fork":false,"pushed_at":"2026-05-31T13:44:05.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-31T15:21:14.386Z","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/stella.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":"2026-05-31T13:17:21.000Z","updated_at":"2026-05-31T13:44:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/stella/tooling","commit_stats":null,"previous_names":["stella/tooling"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/stella/tooling","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stella%2Ftooling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stella%2Ftooling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stella%2Ftooling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stella%2Ftooling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stella","download_url":"https://codeload.github.com/stella/tooling/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stella%2Ftooling/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34247461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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":[],"created_at":"2026-06-12T13:31:52.454Z","updated_at":"2026-06-12T13:31:52.623Z","avatar_url":"https://github.com/stella.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\".github/assets/banner.png\" alt=\"Stella tooling\" width=\"100%\" /\u003e\n\u003c/p\u003e\n\n# stella tooling\n\nShared TypeScript and oxlint configuration for stella public packages.\n\nThis repo intentionally contains only portable tooling policy:\n\n- `@stll/typescript-config`: strict TypeScript config presets.\n- `@stll/oxlint-config`: general upstream oxlint rules and the shared\n  `stella-lowercase` and `no-raw-colors` JS plugins.\n\nRepo-specific stella rules stay in the consuming repo: custom oxlint plugins,\nsecurity rules, i18n rules, generated native artifacts, benchmark exceptions,\nand package-specific ignores.\n\n## Usage\n\nInstall the shared packages:\n\n```bash\nbun add -d @stll/typescript-config @stll/oxlint-config oxlint oxlint-tsgolint typescript\n```\n\nUse the library TypeScript preset:\n\n```json\n{\n  \"extends\": \"@stll/typescript-config/library.json\",\n  \"include\": [\"src\"]\n}\n```\n\nUse the oxlint preset with local exceptions:\n\n```ts\nimport { library } from \"@stll/oxlint-config\";\n\nexport default library({\n  ignorePatterns: [\"dist/\", \"npm/\", \"*.node\"],\n  overrides: [\n    {\n      files: [\"scripts/**\"],\n      rules: {\n        \"no-console\": \"off\",\n      },\n    },\n  ],\n});\n```\n\nUse the helper directly as the root config when possible. That keeps root-level\noptions, shared JS plugins, shared ignores, and local exceptions in one merged\nobject.\n\nIf a repo needs the `extends` style used by other oxlint config packages, keep\nrepo-specific ignores in the root config:\n\n```ts\nimport stella from \"@stll/oxlint-config\";\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\n  extends: [stella],\n  ignorePatterns: [\"dist/\", \"npm/\", \"*.node\"],\n});\n```\n\nCommonJS repos can use `require` in `oxlint.config.ts`:\n\n```ts\nconst { library } = require(\"@stll/oxlint-config\");\n\nmodule.exports = library();\n```\n\nRecommended scripts:\n\n```json\n{\n  \"scripts\": {\n    \"typecheck\": \"tsc --noEmit\",\n    \"lint\": \"bun --bun oxlint -c oxlint.config.ts --report-unused-disable-directives-severity=error --deny-warnings --type-aware .\",\n    \"lint:fix\": \"bun --bun oxlint -c oxlint.config.ts --type-aware --fix .\"\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstella%2Ftooling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstella%2Ftooling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstella%2Ftooling/lists"}