diff --git a/biome.json b/biome.json index ea1e5cd..5d59cfa 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": false, "ignore": [] }, "formatter": { diff --git a/package.json b/package.json index 70630f1..94af108 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Official action to run PackSquash in a GitHub Actions workflow.", "scripts": { "build": "ncc build src/index.ts -o dist/main -m && ncc build src/cleanup_working_directory.ts -o dist/cleanup_working_directory -m", - "check": "biome check --write --unsafe", + "check": "biome check --write", "format:ci": "biome ci --error-on-warnings --linter-enabled=false", "lint:ci": "biome ci --error-on-warnings --formatter-enabled=false --organize-imports-enabled=false", "test": "npm run build && act --secret-file .act-secrets -W .github/workflows/test_empty_resource_pack.yml",