https://github.com/angablue/biome-config
A comprehensive Biome configuation package for JavaScript & TypeScript projects, with support for React.
https://github.com/angablue/biome-config
biome biomejs linting
Last synced: 6 months ago
JSON representation
A comprehensive Biome configuation package for JavaScript & TypeScript projects, with support for React.
- Host: GitHub
- URL: https://github.com/angablue/biome-config
- Owner: AngaBlue
- License: lgpl-3.0
- Created: 2024-12-21T08:52:11.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-07T06:21:47.000Z (8 months ago)
- Last Synced: 2025-03-31T04:51:20.083Z (7 months ago)
- Topics: biome, biomejs, linting
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AngaBlue Biome Config 🧑🏻💻
A comprehensive Biome configuration package for JavaScript & TypeScript projects, with support for React.
### 🏠 [Homepage](https://github.com/AngaBlue/biome-config#readme)
## Install
Install this package and it's peer dependencies with your package manager of choice.
```sh
npm i -D @angablue/biome-config @biomejs/biome
```## Usage
Then create the file `biome.jsonc` in the root directory of your project with the contents:
```jsonc
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["@angablue/biome-config"]
}
```You may also want to add a script to your `package.json` in order to quickly lint and fix problems with your code.
```json
"scripts": {
"lint": "biome check --fix --error-on-warnings"
}
```Now you can, manually lint using the command `npm run lint`, while also receiving inline suggestions and warnings in your editor with the appropriate [`biome`](https://biomejs.dev/guides/editors/first-party-extensions/) extension installed.
## Author
👤 **AngaBlue **
- Website: https://anga.blue
- Github: [@AngaBlue](https://github.com/AngaBlue)## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/AngaBlue/biome-config/issues). You can also take a look at the [contributing guide]().## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
Copyright © 2021 [AngaBlue ](https://github.com/AngaBlue).
This project is [LGPL--3.0--or--later](https://github.com/AngaBlue/biome-config/blob/master/LICENSE) licensed.