{"id":23736521,"url":"https://github.com/ftzi/eslint-config-biome","last_synced_at":"2025-04-06T03:07:18.553Z","repository":{"id":213602647,"uuid":"734497648","full_name":"ftzi/eslint-config-biome","owner":"ftzi","description":"Disables ESLint rules that have a recommended and equivalent Biome rule","archived":false,"fork":false,"pushed_at":"2025-01-23T00:19:53.000Z","size":526,"stargazers_count":114,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T02:07:51.016Z","etag":null,"topics":["biome","biome-js","eslint","eslint-config","eslint-rules","javascript","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ftzi.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}},"created_at":"2023-12-21T20:51:49.000Z","updated_at":"2025-03-16T17:01:41.000Z","dependencies_parsed_at":"2024-04-24T19:29:04.469Z","dependency_job_id":"831adaa6-a0c4-4cc9-88c3-0741942b6181","html_url":"https://github.com/ftzi/eslint-config-biome","commit_stats":{"total_commits":79,"total_committers":3,"mean_commits":"26.333333333333332","dds":"0.10126582278481011","last_synced_commit":"0b22a872f0b6f7d0ba3a4f27196852ac25cf30ee"},"previous_names":["srbrahma/eslint-config-biome","hfantauzzi/eslint-config-biome","brfantauzzi/eslint-config-biome","ftzi/eslint-config-biome"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ftzi%2Feslint-config-biome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ftzi%2Feslint-config-biome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ftzi%2Feslint-config-biome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ftzi%2Feslint-config-biome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ftzi","download_url":"https://codeload.github.com/ftzi/eslint-config-biome/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247427006,"owners_count":20937201,"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","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":["biome","biome-js","eslint","eslint-config","eslint-rules","javascript","typescript"],"created_at":"2024-12-31T07:17:56.045Z","updated_at":"2025-04-06T03:07:18.519Z","avatar_url":"https://github.com/ftzi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cbr/\u003e\n\u003cimg src=\"logo.svg\" alt=\"logo\" width=\"250\"/\u003e\n\n# eslint-config-biome\n[![npm](https://img.shields.io/npm/v/eslint-config-biome)](https://www.npmjs.com/package/eslint-config-biome)\n[![npm](https://img.shields.io/npm/dt/eslint-config-biome)](https://www.npmjs.com/package/eslint-config-biome)\n\n\n\u003ch4\u003e\n\nDisables ESLint rules that have an [**equivalent and recommended**](https://github.com/biomejs/biome/discussions/3) [Biome](https://biomejs.dev/) rule, allowing the simultaneous use of Biome and ESLint.\n\n\u003c/h4\u003e\n\n\n\u003cbr/\u003e\n\n\u003c/div\u003e\n\n## 💿 Installation\n\n```bash\nnpm install -D eslint-config-biome # or your preferred package manager ;)\n```\n\n- `.eslintrc.*`: Add the following as the last item in the `\"overrides\"` array. Create it if necessary.\n\n    ```json5\n    {\n      \"overrides\": [\n        // other overrides,\n        {\n          files: [\"*.ts\", \"*.js\", \"*.tsx\", \"*.jsx\"],\n          extends: [\"biome\"],\n        }\n      ],\n    }\n    ```\n\n- Or `eslint.config.js`: Import `eslint-config-biome` and have it as the last item in the configuration array\n\n    ```js\n    import biome from \"eslint-config-biome\";\n\n    export default [\n      // other configs,\n      biome,\n    ];\n    ```\n\n## ℹ️ Info\n\n- In VSCode, to apply Biome and ESLint on save, you should have these in your project's `.vscode/settings.json`:\n\n    ```json\n    {\n      \"editor.codeActionsOnSave\": {\n        \"source.fixAll.eslint\": \"explicit\",\n        \"source.organizeImports.biome\": \"explicit\",\n        \"quickfix.biome\": \"explicit\"\n      },\n      \"editor.defaultFormatter\": \"biomejs.biome\"\n    }\n    ```\n\n- For package.json scripts and CI, I recommend running `biome` before `eslint` for faster failure detection.\n\n  ```json\n  \"scripts\": {\n    \"format:check\": \"biome check . \u0026\u0026 eslint .\",\n    \"format\": \"biome check --apply-unsafe . \u0026\u0026 eslint --fix .\",\n  }\n  ```\n\n- This package includes [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), so formatting rules are also disabled as Biome is equivalent to Prettier. [Attribution](ATTRIBUTION.md).\n\n\n## 📰 [Changelog](CHANGELOG.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fftzi%2Feslint-config-biome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fftzi%2Feslint-config-biome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fftzi%2Feslint-config-biome/lists"}