lingo.dev@0.138.2

lingodotdev/lingo.devlingo.dev@0.138.2Jul 17, 2026by github-actions[bot]

AI Summary

This patch fixes a critical issue where the Biome formatter would skip files and reset quote styles when encountering unsupported configuration keys like grit plugins.

Key Highlights

  • Fixed Biome formatter silently skipping files when grit plugins are used.
  • Excluded unsupported keys before applying configuration to prevent formatting failures.
  • Implemented fallback to formatter-only settings to ensure formatting continues.

Full Release Notes

### Patch Changes

- [#2169](https://github.com/lingodotdev/lingo.dev/pull/2169) [`14b34e7`](https://github.com/lingodotdev/lingo.dev/commit/14b34e7868670b6e56a1abddfba3987309afb3fc) Thanks [@cherkanovart](https://github.com/cherkanovart)! - Fix Biome formatter silently skipping files when `biome.jsonc` uses a grit `plugins` entry (or any section the bundled Biome can't apply). Previously `applyConfiguration` threw on such keys, formatting was disabled for the whole file, and the project's configured quote style was dropped — files got committed reformatted to defaults on every run. The `plugins` key is now excluded before applying config, and any remaining unsupported/unknown section falls back to formatter-only settings so formatting still runs.