0.1.0 • Published 6 months ago

eslint-plugin-agama-i18n v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

The ESLint Plugin

This directory contains a simple ESLint plugin which checks that only string literals are passed to the translation functions.

It is closely tied to the Agama project and probably does not make much sense for other projects.

Disabling the Check

In some rare cases using a variable instead of a string literal is correct. In that case disable the check locally:

const SIZES = [ N_("small"), N_("medium"), N_("large") ];

// returns one of the sizes above
const sz = getSize();

// eslint-disable-next-line agama-i18n/string-literals
return <span>{_(sz)}</span>;

Links

0.1.0

6 months ago