{"id":21000925,"url":"https://github.com/robinwalterfit/biome-standard","last_synced_at":"2025-04-23T21:44:33.877Z","repository":{"id":241953054,"uuid":"806693755","full_name":"robinwalterfit/biome-standard","owner":"robinwalterfit","description":"A port of the StandardJS ESLint config to Biome.","archived":false,"fork":false,"pushed_at":"2024-09-22T16:13:48.000Z","size":130,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T21:44:26.196Z","etag":null,"topics":["apache2","biome","css","development","formatter","javascript","json","jsx","linter","mit","nodejs","standard","standardjs","static-code-analysis","style-guide","typescript","web"],"latest_commit_sha":null,"homepage":"https://github.com/robinwalterfit/biome-standard","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robinwalterfit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-27T17:43:35.000Z","updated_at":"2025-04-06T22:40:28.000Z","dependencies_parsed_at":"2024-05-30T22:19:57.801Z","dependency_job_id":"6854a469-448b-4271-ab3e-dd3bf5a6c72f","html_url":"https://github.com/robinwalterfit/biome-standard","commit_stats":null,"previous_names":["robinwalterfit/biome-standard"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinwalterfit%2Fbiome-standard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinwalterfit%2Fbiome-standard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinwalterfit%2Fbiome-standard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinwalterfit%2Fbiome-standard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robinwalterfit","download_url":"https://codeload.github.com/robinwalterfit/biome-standard/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250522292,"owners_count":21444509,"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":["apache2","biome","css","development","formatter","javascript","json","jsx","linter","mit","nodejs","standard","standardjs","static-code-analysis","style-guide","typescript","web"],"created_at":"2024-11-19T08:12:57.347Z","updated_at":"2025-04-23T21:44:33.859Z","avatar_url":"https://github.com/robinwalterfit.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Biome configuration based on Standard\n\n[![Checked with Biome](https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat\u0026logo=biome)](https://biomejs.dev)\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](https://commitizen-tools.github.io/commitizen/)\n[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=flat-square)](https://conventionalcommits.org)\n[![lefthook](https://img.shields.io/badge/lefthook-enabled-rgb(208%2C80%2C48)?style=flat-square)](https://github.com/evilmartians/lefthook)\n\nA port of the StandardJS ESLint configuration to Biome.\n\n## Installation / Getting Started\n\nRun the following command to install the Biome configuration:\n\n```bash\nnpm install git+ssh://git@github.com:robinwalterfit/biome-standard.git#v0.4.0\n```\n\nThen add to your Biome configuration:\n\n```jsonc\n{\n    \"$schema\": \"https://biomejs.dev/schemas/1.9.2/schema.json\",\n    \"extends\": [\"biome-standard/biome\"],\n    // ... your individual configuration\n}\n```\n\n## Deployment\n\nCurrently, this package is not published on any registry. Follow the [installation instructions](#installation--getting-started),\nif you want to use this Biome configuration.\n\n## Development\n\nDeveloping Biome Standard configuration is very simple. Biome names their rules\ndifferently from ESLint, but thankfully the Biome CLI provides a migration\ncommand. In order migrate a StandardJS configuration to Biome, all you have to\ndo is to run the following command.\n\n```bash\nbiome migrate eslint --include-inspired --include-nursery --write\n```\n\nNote however, that migrate will search for a typical `.eslintrc` file. It's not\npossible to provide multiple files as input. Fortunately, multiple calls to\n`biome migrate` will end up in merging the existing biome configuration with\nthe new rules. The next section will tell you what StandardJS configuration was\nused to generate this Biome configuration.\n\n### Dependencies\n\nRun\n\n```bash\nnpm install --save-dev eslint-config-love@71.0.0 eslint-config-standard@17.1.0 eslint-config-standard-jsx@11.0.0 eslint-config-standard-react@13.0.0\n```\n\nand find the packages in `node_modules`. Copy the ESLint configuration to the\nroot directory, name it `.eslintrc.json` and run `biome migrate` one by one.\n\n**NOTE**: `eslint-config-love` won't export a typical `.eslintrc` configuration\nfile. Instead you will find a `index.js`. Copy this file and name it `.eslintrc.cjs`.\n\n## Links\n\n- Biome configuration based on Standard: [https://github.com/robinwalterfit/biome-standard](https://github.com/robinwalterfit/biome-standard)\n- Issue tracker: [https://github.com/robinwalterfit/biome-standard/issues](https://github.com/robinwalterfit/biome-standard/issues)\n- More Links:\n  - Biome repository: [https://github.com/biomejs/biome](https://github.com/biomejs/biome)\n  - Collection of useful `.gitattributes` templates: [https://github.com/gitattributes/gitattributes](https://github.com/gitattributes/gitattributes)\n  - Commitizen: [https://commitizen-tools.github.io/commitizen/](https://commitizen-tools.github.io/commitizen/)\n  - Conventional Commits: [https://www.conventionalcommits.org/en/v1.0.0/](https://www.conventionalcommits.org/en/v1.0.0/)\n  - EditorConfig: [https://editorconfig.org/](https://editorconfig.org/)\n  - `.gitignore` Generator: [https://gitignore.io](https://gitignore.io)\n  - Lefthook: [https://github.com/evilmartians/lefthook](https://github.com/evilmartians/lefthook)\n  - StandardJS: [https://standardjs.com/](https://standardjs.com/)\n    - `eslint-config-love@71.0.0`: [https://github.com/mightyiam/eslint-config-love/tree/v71.0.0](https://github.com/mightyiam/eslint-config-love/tree/v71.0.0)\n    - `eslint-config-standard@17.1.0`: [https://github.com/standard/eslint-config-standard/tree/v17.1.0](https://github.com/standard/eslint-config-standard/tree/v17.1.0)\n    - `eslint-config-standard-jsx@11.0.0`: [https://github.com/standard/eslint-config-standard-jsx/tree/v11.0.0](https://github.com/standard/eslint-config-standard-jsx/tree/v11.0.0)\n    - `eslint-config-standard-react@13.0.0`: [https://github.com/standard/eslint-config-standard-react/tree/v13.0.0](https://github.com/standard/eslint-config-standard-react/tree/v13.0.0)\n  - Visual Studio Code: [https://code.visualstudio.com/](https://code.visualstudio.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinwalterfit%2Fbiome-standard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobinwalterfit%2Fbiome-standard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinwalterfit%2Fbiome-standard/lists"}