Address PR comments

This commit is contained in:
Scott Anderson
2025-08-24 21:01:28 -04:00
parent b107ff9f24
commit eaefecb00f
2 changed files with 32 additions and 27 deletions
+32 -18
View File
@@ -1,35 +1,49 @@
{
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": true
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
},
"enabled": true
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentWidth": 2,
"indentStyle": "space"
},
"linter": {
"enabled": false,
"rules": {
"recommended": true
}
"indentStyle": "space",
"indentWidth": 2
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
"linter": {
"enabled": false
},
"overrides": [
{
"assist": {
"actions": {
"source": {
"useSortedKeys": "on"
}
}
},
"includes": [
"eslint-plugin-local/**/*.{js,ts,jsx,tsx}",
"src/**/*.{js,ts,jsx,tsx}",
"**/*.test.{js,ts,jsx,tsx}",
"tests/**/*.{js,ts,jsx,tsx}"
]
}
],
"vcs": {
"clientKind": "git",
"enabled": true,
"useIgnoreFile": true
}
}
-9
View File
@@ -83,7 +83,6 @@ export default [
"@typescript-eslint/prefer-nullish-coalescing": "error",
"@typescript-eslint/prefer-readonly": "error",
eqeqeq: "error",
"sort-keys": "error",
"@typescript-eslint/no-unsafe-argument": "error",
"@typescript-eslint/no-unsafe-assignment": "error",
"@typescript-eslint/no-unsafe-member-access": "error",
@@ -153,7 +152,6 @@ export default [
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"max-len": "off",
"sort-keys": "off",
},
},
{
@@ -166,13 +164,6 @@ export default [
plugins: ["jest"],
...jest.configs["flat/style"],
},
{
files: ["src/client/**/*.{js,ts,jsx,tsx}"],
rules: {
// Disabled rules for frontend
"sort-keys": "off",
},
},
{
plugins: {
local: eslintPluginLocal,