{"id":42221016,"url":"https://github.com/spellbookx/spellbookx","last_synced_at":"2026-02-26T18:43:04.725Z","repository":{"id":340093185,"uuid":"1142652753","full_name":"spellbookx/spellbookx","owner":"spellbookx","description":"A collection of shareable configurations for various development tools","archived":false,"fork":false,"pushed_at":"2026-02-23T10:17:33.000Z","size":1415,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-23T14:49:13.396Z","etag":null,"topics":["commitizen","commitlint","conventional-commits","cspell","eslint","prettier"],"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/spellbookx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-01-26T17:28:08.000Z","updated_at":"2026-02-23T10:17:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/spellbookx/spellbookx","commit_stats":null,"previous_names":["spellbookx/spellbookx"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/spellbookx/spellbookx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spellbookx%2Fspellbookx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spellbookx%2Fspellbookx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spellbookx%2Fspellbookx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spellbookx%2Fspellbookx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spellbookx","download_url":"https://codeload.github.com/spellbookx/spellbookx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spellbookx%2Fspellbookx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29865409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T16:38:37.846Z","status":"ssl_error","status_checked_at":"2026-02-26T16:37:58.932Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["commitizen","commitlint","conventional-commits","cspell","eslint","prettier"],"created_at":"2026-01-27T02:08:10.522Z","updated_at":"2026-02-26T18:43:04.717Z","avatar_url":"https://github.com/spellbookx.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![spellbookx](./images/gh-banner.png)\n\n# spellbookx\n\nWelcome to Spellbookx, a collection of shareable configurations for various development tools. This monorepo is designed to streamline your development workflow by providing consistent and opinionated setups for linting, formatting, commit messaging, and more.\n\n## Packages\n\nThis repository contains the following packages:\n\n### [commitlint-config-spellbookx](./packages/commitlint-config-spellbookx)\n\nShared [Commitlint](https://commitlint.js.org/) configuration for the Spellbookx project. This package ensures that all commits adhere to the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.\n\n**Installation:**\n\n```bash\npnpm add -D commitlint-config-spellbookx @commitlint/cli\n```\n\n**Usage:**\nCreate a `commitlint.config.mjs` file in your project's root:\n\n```javascript\nimport config from 'commitlint-config-spellbookx';\n\nexport default config;\n```\n\n### [cspell-config-spellbookx](./packages/cspell-config-spellbookx)\n\nShared [CSpell](https://cspell.org/) configuration for the Spellbookx project. This package provides a consistent and robust spell-checking setup for all packages in the monorepo.\n\n**Installation:**\n\n```bash\npnpm add -D cspell-config-spellbookx cspell\n```\n\n**Usage:**\nCreate a `cspell.config.cjs` file in your project's root:\n\n```javascript\nconst config = require('cspell-config-spellbookx');\n\nmodule.exports = config;\n```\n\n### [eslint-plugin-spellbookx](./packages/eslint-plugin-spellbookx)\n\nAn ESLint plugin containing shared configurations for the Spellbookx project. This package bundles and pre-configures a variety of essential ESLint plugins for a consistent and high-quality codebase.\n\n**Installation:**\n\n```bash\npnpm add -D eslint-plugin-spellbookx eslint\n```\n\n**Usage:**\nCreate an `eslint.config.mjs` file in your project's root:\n\n```javascript\nimport spellbookx from 'eslint-plugin-spellbookx';\n\nexport default [\n  ...spellbookx.configs.recommended,\n  // Add your custom rules here\n];\n```\n\n### [prettier-config-spellbookx](./packages/prettier-config-spellbookx)\n\nShared [Prettier](https://prettier.io/) configuration for the Spellbookx project. This package provides a consistent and opinionated code formatting setup for a wide range of file types.\n\n**Installation:**\n\n```bash\npnpm add -D prettier-config-spellbookx prettier\n```\n\n**Usage:**\nCreate a `prettier.config.mjs` file in your project's root:\n\n```javascript\nimport { base } from 'prettier-config-spellbookx';\n\nexport default base;\n```\n\n### [spellbookx](./packages/spellbookx)\n\nThe official CLI for the Spellbookx ecosystem. It provides tools for project scaffolding and interactive setup of linting, formatting, and commit standards.\n\n**Usage:**\n\n```bash\npnpm dlx spellbookx create [workspace-name]\n```\n\nOr in an existing project:\n\n```bash\npnpm add -D spellbookx\npnpm sbx init\n```\n\n## License\n\nThis project is licensed under the MIT License.\n\n**Copyright (c) 2026 Davide Di Criscito**\n\nFor the full details, see the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspellbookx%2Fspellbookx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspellbookx%2Fspellbookx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspellbookx%2Fspellbookx/lists"}