{"id":14978228,"url":"https://github.com/pilaton/eslint-eco","last_synced_at":"2026-02-20T18:03:38.809Z","repository":{"id":212332274,"uuid":"729899390","full_name":"Pilaton/eslint-eco","owner":"Pilaton","description":"Monorepository with all necessary ESLint configurations","archived":false,"fork":false,"pushed_at":"2024-05-06T12:27:36.000Z","size":535,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T10:43:52.139Z","etag":null,"topics":["eslint","eslint-config","eslint-flat-config","eslint-plugin","eslint-rules","markdown","nextjs","react"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Pilaton.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}},"created_at":"2023-12-10T17:37:42.000Z","updated_at":"2024-05-06T12:27:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"c8656cbb-a025-4900-b9b0-4422a20acc1a","html_url":"https://github.com/Pilaton/eslint-eco","commit_stats":{"total_commits":65,"total_committers":2,"mean_commits":32.5,"dds":0.4461538461538461,"last_synced_commit":"44d6fbf0cacc1d33669a5d1c151416e548c800c8"},"previous_names":["pilaton/eslint-eco"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/Pilaton/eslint-eco","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pilaton%2Feslint-eco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pilaton%2Feslint-eco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pilaton%2Feslint-eco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pilaton%2Feslint-eco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pilaton","download_url":"https://codeload.github.com/Pilaton/eslint-eco/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pilaton%2Feslint-eco/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29659754,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"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":["eslint","eslint-config","eslint-flat-config","eslint-plugin","eslint-rules","markdown","nextjs","react"],"created_at":"2024-09-24T13:57:06.316Z","updated_at":"2026-02-20T18:03:33.795Z","avatar_url":"https://github.com/Pilaton.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-eco\n\nMonorepository with all necessary ESLint configurations.\n\n---\n\n\u003e [!IMPORTANT]\n\u003e Only ESM and ESLint FlatConfig\n\n---\n\nIncludes the following sub-packages:\n\n1. [`@pilaton/eslint-config-base`](./packages/base/README.md)  \n   The configuration includes basic JS and TS code checks.\n\n   ![npm](https://img.shields.io/npm/v/%40pilaton%2Feslint-config-base?style=flat-square\u0026logo=npm\u0026labelColor=%236a6eff\u0026color=%236a6eff)\n\n2. [`@pilaton/eslint-config-react`](./packages/react/README.md)  \n   Additional config on top of the base config if you use React in your project.\n\n   ![npm](https://img.shields.io/npm/v/%40pilaton%2Feslint-config-react?style=flat-square\u0026logo=npm\u0026labelColor=%236a6eff\u0026color=%236a6eff)\n\n3. [`@pilaton/eslint-config-next`](./packages/next/README.md)  \n   Additional config on top of react config if you use Next.js in your project.\n\n   ![npm](https://img.shields.io/npm/v/%40pilaton%2Feslint-config-next?style=flat-square\u0026logo=npm\u0026labelColor=%236a6eff\u0026color=%236a6eff)\n\n4. [`@pilaton/eslint-config-markdown`](./packages/markdown/README.md)  \n   Config for linting .md and .mdx files.\n\n   ![npm](https://img.shields.io/npm/v/%40pilaton%2Feslint-config-markdown?style=flat-square\u0026logo=npm\u0026labelColor=%236a6eff\u0026color=%236a6eff)\n\n## Install\n\n```bash\nnpm i @pilaton/eslint-config-[NAME] --save-dev\n```\n\n[NAME]: **base**, **react**, **next** or **markdown**\n\n## Usage\n\n### [`eslint.config.js`](https://eslint.org/docs/latest/use/configure/configuration-files-new) (eslint\u003e=v8.23.1)\n\n```js\nimport base from '@pilaton/eslint-config-base';\nimport markdown from '@pilaton/eslint-config-markdown';\nimport next from '@pilaton/eslint-config-next';\nimport react from '@pilaton/eslint-config-react';\n\nexport default [\n  ...base,\n  ...react,\n  ...next,\n  ...markdown,\n\n  {\n    // Your config\n  },\n];\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpilaton%2Feslint-eco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpilaton%2Feslint-eco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpilaton%2Feslint-eco/lists"}