NeoIQ Localize

Biome

NeoIQ Localize can work together with Biome to ensure your translation files are consistently formatted. This is particularly useful when working with JSON translation files that need to maintain a consistent style across your project.

Using with NeoIQ Localize

The recommended way to use Biome with NeoIQ Localize is to format your translation files after they're generated. You can set this up in your package.json:

package.json
{
  "scripts": {
    "translate": "npx @neoiq/localize@latest translate",
    "format": "biome format \"locales/**/*.json\"",
    "translate:format": "npm run translate && npm run format"
  }
}

Now you can:

  • Run npm run translate to only generate translations
  • Run npm run format to only format existing translation files
  • Run npm run translate:format to generate translations and format them in sequence

This configuration will ensure your translation files are formatted consistently with 2-space indentation and a maximum line width of 80 characters.

How is this guide?

Edit on GitHub

Last updated on

On this page