-
Notifications
You must be signed in to change notification settings - Fork 0
feat: migrate into biome instead of ESLint #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| { | ||
| "$schema": "https://biomejs.dev/schemas/2.4.3/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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The "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" | ||
| } | ||
| } | ||
| } | ||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The schema version
2.4.3appears to be incorrect as the current stable version of Biome is1.9.4. Using an invalid version in the schema URL will prevent IDEs from providing proper configuration validation and autocompletion.