![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@m6web/eslint-plugin-i18n
Advanced tools
This is an eslint plugin for i18n in a react application.
yarn add -D eslint-plugin-m6web-i18n
yarn build
To bump we use mvrsion.
example:
yarn mversion -- patch -m
interpolationPattern
option is required to match interpolation in your translation file.You have to add the following lines in your .eslintrc
file to configure this plugin:
// Declare the plugin
"plugins": [
"m6web-i18n"
],
// Specify rules severity
"rules": {
"m6web-i18n/no-unknown-key": "error",
"m6web-i18n/no-unknown-key-secondary-langs": "warn",
"m6web-i18n/no-text-as-children": ["error", {"ignorePattern": "^\\s?[/.]\\s?$"}],
"m6web-i18n/no-text-as-attribute": ["error", {"attributes": ["alt", "title"]}],
"m6web-i18n/interpolation-data": ["error", { "interpolationPattern": "\\{\\.+\\}" }]
},
// The plugin needs jsx feature to be on for 'no-text-as-children' rule
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
// Settings of your translation
"settings": {
"i18n": {
// Your principal languages used in 'no-unknown-key' rule
"principalLangs": [
{
"name": "fr",
"translationPath": "i18n/fr.json"
}
],
// Secondary languages used in 'no-unknown-key-secondary-langs' rule
"secondaryLangs": [
{
"name": "en",
"translationPath": "i18n/en.json"
}
],
// Name of your translate function
"functionName": "t",
// If you want to ignore specific files
"ignoreFiles": "**/*.spec.js",
// If you have pluralization
"pluralizedKeys": ["one", "other"],
// TTL of the translations file caching (defaults to 500ms)
"translationsCacheTTL": 300
}
}
FAQs
eslint plugin for generic i18n
The npm package @m6web/eslint-plugin-i18n receives a total of 469 weekly downloads. As such, @m6web/eslint-plugin-i18n popularity was classified as not popular.
We found that @m6web/eslint-plugin-i18n demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.