A port of the StandardJS ESLint configuration to Biome.
Run the following command to install the Biome configuration:
npm install git+ssh://git@github.com:robinwalterfit/biome-standard.git#v0.5.0Then add to your Biome configuration:
Currently, this package is not published on any registry. Follow the installation instructions, if you want to use this Biome configuration.
Developing Biome Standard configuration is very simple. Biome names their rules differently from ESLint, but thankfully the Biome CLI provides a migration command. In order migrate a StandardJS configuration to Biome, all you have to do is to run the following command.
biome migrate eslint --include-inspired --include-nursery --writeNote however, that migrate will search for a typical .eslintrc file. It's not
possible to provide multiple files as input. Fortunately, multiple calls to
biome migrate will end up in merging the existing biome configuration with
the new rules. The next section will tell you what StandardJS configuration was
used to generate this Biome configuration.
Run
npm install --save-dev eslint-config-love@84.1.1 eslint-config-standard@17.1.0 eslint-config-standard-jsx@11.0.0 eslint-config-standard-react@13.0.0and find the packages in node_modules. Copy the ESLint configuration to the
root directory, name it .eslintrc.json and run biome migrate one by one.
NOTE: eslint-config-love won't export a typical .eslintrc configuration
file. Instead you will find a index.js. Copy this file and name it .eslintrc.cjs.
Read the contributing guide to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.
SemVer is used for versioning. For the versions available, see the tags on this repository.
To make versioning as easy as possible, this project uses Conventional Commits along with the tool Cocogitto. This way it is very easy to calculate a new version number and generate changelogs based on commit messages.
- Biome configuration based on Standard: https://github.com/robinwalterfit/biome-standard
- Issue tracker: https://github.com/robinwalterfit/biome-standard/issues
- More Links:
- Biome: https://biomejs.dev/
- Biome repository: https://github.com/biomejs/biome
- Cocogitto: https://docs.cocogitto.io/
- Collection of useful
.gitattributestemplates: https://github.com/gitattributes/gitattributes - Contributor Covenant Code of Conduct: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
- Conventional Branch: https://conventional-branch.github.io/
- Conventional Commits: https://www.conventionalcommits.org/en/v1.0.0/
- EditorConfig: https://editorconfig.org/
- Git Flow: https://nvie.com/posts/a-successful-git-branching-model/
.gitignoreGenerator: https://gitignore.io- keep a changelog: https://keepachangelog.com/en/1.1.0/
- Lefthook: https://github.com/evilmartians/lefthook
- Semantic Versioning: https://semver.org/
- StandardJS: https://standardjs.com/
eslint-config-love@84.1.1: https://github.com/mightyiam/eslint-config-love/tree/v84.1.1eslint-config-standard@17.1.0: https://github.com/standard/eslint-config-standard/tree/v17.1.0eslint-config-standard-jsx@11.0.0: https://github.com/standard/eslint-config-standard-jsx/tree/v11.0.0eslint-config-standard-react@13.0.0: https://github.com/standard/eslint-config-standard-react/tree/v13.0.0
- Taskfile: https://taskfile.dev/
- Visual Studio Code: https://code.visualstudio.com/
- Zed: https://zed.dev/
biome-standard is MIT licensed or Apache 2.0 licensed and moderated under the Contributor Covenant Code of Conduct.
{ "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json", "extends": ["biome-standard/biome"], // ... your individual configuration }