Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

46 changes: 46 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The schema version 2.4.3 appears to be incorrect as the current stable version of Biome is 1.9.4. Using an invalid version in the schema URL will prevent IDEs from providing proper configuration validation and autocompletion.

Suggested change
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",

"files": {
"includes": [
"**",
"!**/node_modules",
"!**/dist",
"!**/coverage",
"!**/src-tauri/target",
"!**/.venv-ci",
"!!**/node_modules",
"!!**/dist",
"!!**/coverage",
"!!**/src-tauri/target",
"!!**/.venv-ci"
]
},
Comment on lines +3 to +17

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The files configuration contains redundant patterns (e.g., !!) and uses negated includes for ignoring directories. Biome processes all files by default, so includes: ["**"] is unnecessary. It is recommended to use the dedicated ignore field for excluding directories like node_modules and dist.

  "files": {
    "ignore": [
      "node_modules",
      "dist",
      "coverage",
      "src-tauri/target",
      ".venv-ci"
    ]
  },

"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"noStaticElementInteractions": "off",
"useKeyWithClickEvents": "off"
},
"suspicious": {
"noArrayIndexKey": "off"
},
"style": {
"noNonNullAssertion": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always"
}
}
}
23 changes: 0 additions & 23 deletions eslint.config.js

This file was deleted.

Loading