Skip to content

Commit

Permalink
Merge branch 'master' of github.com:scalableminds/webknossos into ena…
Browse files Browse the repository at this point in the history
…ble-taskbased-training
  • Loading branch information
Michael Büßemeyer authored and Michael Büßemeyer committed Jan 9, 2025
2 parents 8ab7b3e + abce5a5 commit b9e0946
Show file tree
Hide file tree
Showing 10 changed files with 1,098 additions and 947 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
- Added the option for "Selective Segment Visibility" for segmentation layers. Select this option in the left sidebar to only show segments that are currently active or hovered. [#8281](https://github.com/scalableminds/webknossos/pull/8281)
- A segment can be activated with doubleclick now. [#8281](https://github.com/scalableminds/webknossos/pull/8281)
- It is now possible to select the magnification of the layers on which an AI model will be trained. [#8266](https://github.com/scalableminds/webknossos/pull/8266)
- Enabled auto sorting of Typescript imports in Biome linter. [#8313](https://github.com/scalableminds/webknossos/pull/8313)


### Changed
- Renamed "resolution" to "magnification" in more places within the codebase, including local variables. [#8168](https://github.com/scalableminds/webknossos/pull/8168)
Expand Down
17 changes: 12 additions & 5 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": { "enabled": false },
"organizeImports": {
"enabled": true,
"ignore": [
"frontend/javascripts/test/*",
"frontend/javascripts/oxalis/model/helpers/shader_editor.ts"
]
},
"linter": {
"enabled": true,
"ignore": [
Expand All @@ -12,7 +18,8 @@
"libs/fps_meter.ts",
"libs/parse_stl_buffer.ts",
"libs/trackball_controls.ts",
"*.d.ts"
"*.d.ts",
"frontend/javascripts/test/snapshots/*"
],
"rules": {
"recommended": true,
Expand Down Expand Up @@ -49,16 +56,16 @@
"useValidAnchor": "off",
"useKeyWithClickEvents": "off",
"useIframeTitle": "off",
"noAriaHiddenOnFocusable": "off"
"noAriaHiddenOnFocusable": "off",
"noLabelWithoutControl": "off"
},
"performance": {
"noDelete": "off"
},
"correctness": {
"noUnusedVariables": "error",
"noRenderReturnValue": "off",
"useHookAtTopLevel": "error",
"noUnusedImports": "error"
"useHookAtTopLevel": "error"
},
"suspicious": {
"noExplicitAny": "off",
Expand Down
Loading

0 comments on commit b9e0946

Please sign in to comment.