1.0.1 • Published 2 months ago

@javinyx/biome-config v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@javinyx/biome-config

Usage

Installation

npm|yarn|pnpm|bun add -D @biomejs/biome @javinyx/biome-config

Add the extends array to your project's biome.json file:

// <project-root>/biome.json
{
    "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
    "extends": "@javinyx/biome-config",
    // ...
}

Add scripts to your package.json if you haven't already:

// <project-root>/package.json
{
    //...
    "scripts": {
        "lint": "biome lint .",
        "lint:fix": "biome lint . --apply"
    }
    // ...
}

Visual Studio Code Setup

  1. Install the BiomeJS Visual Studio Code extension if you haven't already.

  2. Add the following settings to your project's .vscode/settings.json, or create them anew:

// <project-root>/.vscode/settings.json
{
    // ...
    "[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
      "editor.defaultFormatter": "biomejs.biome"
    },
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
        "quickfix.biome": "explicit",
        "source.organizeImports.biome": "explicit"
    }
    // ...
}
1.0.1

2 months ago

1.0.0

2 months ago

0.0.2

3 months ago

0.0.1

3 months ago