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
19 changes: 0 additions & 19 deletions AdditionalToolbarButton/.eslintrc.json

This file was deleted.

7 changes: 2 additions & 5 deletions AdditionalToolbarButton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ This is a template for creating an additional toolbar button for metatell.
- `npm run preview`: Preview the production build locally
- `npm run lint`: Run all lint check
- `npm run lint:tsc`: Run code check based on tsc
- `npm run lint:prettier`: Run code check based on prettier
- `npm run lint:eslint`: Run code check based on eslint
- `npm run lint-fix`: Run all code fix
- `npm run lint-fix:prettier`: Run code fix based on prettier
- `npm run lint-fix:eslint`: Run code fix based on eslint
- `npm run lint:biome`: Run code check based on biome
- `npm run lint-fix`: Run code fix based on biome

## How to develop

Expand Down
23 changes: 23 additions & 0 deletions AdditionalToolbarButton/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"linter": {
"rules": {
"recommended": true,
"a11y": {
"noLabelWithoutControl": "warn",
"noRedundantAlt": "warn",
"noStaticElementInteractions": "warn",
"noSvgWithoutTitle": "warn",
"useAltText": "warn",
"useIframeTitle": "warn",
"useKeyWithClickEvents": "warn"
},
"correctness": {
"useExhaustiveDependencies": "warn"
},
"suspicious": {
"noArrayIndexKey": "warn"
}
}
}
}
Loading
Loading