![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@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
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.