From ba22f551fa20f2f15781edb49bc22efb234ff8f4 Mon Sep 17 00:00:00 2001 From: omar Date: Tue, 4 Jun 2024 07:25:02 -0700 Subject: [PATCH] feat: biome v1.8.0 --- biome.json | 5 ++--- flake.nix | 2 +- tools/biome/biome.nix | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/biome.json b/biome.json index f1e9febec8..86de21c502 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.7.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.8.0/schema.json", "vcs": { "enabled": true, "clientKind": "git", @@ -158,7 +158,6 @@ "nursery": { "all": true, "noConsole": "off", - "noNodejsModules": "off", "useImportRestrictions": "off", "noUndeclaredDependencies": "off", "noUselessUndefinedInitialization": "off" @@ -240,7 +239,7 @@ "indentStyle": "space", "quoteStyle": "double", "bracketSpacing": true, - "trailingComma": "none", + "trailingCommas": "none", "semicolons": "asNeeded", "bracketSameLine": false, "jsxQuoteStyle": "double", diff --git a/flake.nix b/flake.nix index 59ce873608..9b6dcef427 100644 --- a/flake.nix +++ b/flake.nix @@ -94,7 +94,7 @@ flake = false; }; biome = { - url = "github:biomejs/biome/cli/v1.7.3"; + url = "github:biomejs/biome/cli/v1.8.0"; flake = false; }; diff --git a/tools/biome/biome.nix b/tools/biome/biome.nix index d7979e1132..c2540deebb 100644 --- a/tools/biome/biome.nix +++ b/tools/biome/biome.nix @@ -18,7 +18,7 @@ rustToolchain = rust.mkNightly { target = CARGO_BUILD_TARGET; }; - BIOME_VERSION = "1.7.3"; + BIOME_VERSION = "1.8.0"; biome = (crane.lib.overrideToolchain rustToolchain).buildPackage { inherit CARGO_BUILD_TARGET BIOME_VERSION;