From 7b298486a5e8ad03de18958c3f0d52f9531a116c Mon Sep 17 00:00:00 2001 From: TheSisb Date: Wed, 27 Sep 2023 14:15:33 -0500 Subject: [PATCH] chore: fix biome.json --- biome.json | 9 +++++++++ package.json | 13 ++----------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/biome.json b/biome.json index 9c5b9fb417..05d86c9b6c 100644 --- a/biome.json +++ b/biome.json @@ -15,8 +15,10 @@ "packages/paste-theme-designer/public", "packages/paste-theme-designer/out", "packages/paste-token-contrast-checker/public", + "packages/paste-website/data", ".cache", ".next", + ".netlify", ".yarn", "packages/**/dist/*", "tsconfig.build.tsbuildinfo", @@ -33,8 +35,15 @@ "enabled": true, "rules": { "recommended": true, + "a11y": { + "noSvgWithoutTitle": "off" + }, "suspicious": { "noExplicitAny": "off" + }, + "complexity": { + "noUselessSwitchCase": "off", + "noMultipleSpacesInRegularExpressionLiterals": "off" } } }, diff --git a/package.json b/package.json index 4d8efd2ccf..4ef0dc4ca8 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,7 @@ "author": "Twilio Inc.", "license": "MIT", "workspaces": { - "packages": [ - "apps/**/*", - "packages/**/*", - "templates/**/*", - "!packages/paste-core/core-bundle/**/*" - ] + "packages": ["apps/**/*", "packages/**/*", "templates/**/*", "!packages/paste-core/core-bundle/**/*"] }, "types": "./types/index.d.ts", "engines": { @@ -226,9 +221,5 @@ } }, "packageManager": "yarn@3.6.3", - "browserslist": [ - "last 2 versions", - "not dead", - "not IE 11" - ] + "browserslist": ["last 2 versions", "not dead", "not IE 11"] }