From 79c9de8af8a61419d7e414ff71b3596048b7d5a7 Mon Sep 17 00:00:00 2001 From: Al0cam Date: Mon, 11 Aug 2025 11:15:05 +0200 Subject: [PATCH] updated biome and readme --- README.md | 1 + biome.json | 61 ++++++++++++++++++++++++++++-------------------------- 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index f452764..d8bb777 100644 --- a/README.md +++ b/README.md @@ -195,5 +195,6 @@ Thank you! - [x] Add import and export of rules - [ ] Add a file like .gitignore which contains all the moving rules (i am assuming the list can grow quite big for some people) - [ ] Auto tagging of moved files with the destination folder name (last folder in the path) +- [ ] Add undo button to the notification popup for the moved files diff --git a/biome.json b/biome.json index 5765e00..78fbd4c 100644 --- a/biome.json +++ b/biome.json @@ -1,31 +1,34 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", - "vcs": { - "enabled": false, - "clientKind": "git", - "useIgnoreFile": false - }, - "files": { - "ignoreUnknown": false, - "ignore": [] - }, - "formatter": { - "enabled": true, - "indentStyle": "space", - "indentWidth": 2 - }, - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true - } - }, - "javascript": { - "formatter": { - "quoteStyle": "double" - } - } + "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json", + "vcs": { + "enabled": false, + "clientKind": "git", + "useIgnoreFile": false + }, + "files": { + "ignoreUnknown": false + }, + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 2 + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "javascript": { + "formatter": { + "quoteStyle": "double" + } + }, + "assist": { + "actions": { + "source": { + "organizeImports": "on" + } + } + } }