Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@elastic/eslint-plugin-react-intl

Package Overview
Dependencies
2
Maintainers
25
Versions
1
Issues
File Explorer

Advanced tools

@elastic/eslint-plugin-react-intl

react-intl specific linting rules for ESLint

    1.2.0latest
    GitHub

Version published
Maintainers
25
Weekly downloads
537
increased by74.92%

Weekly downloads

Readme

Source

eslint-plugin-react-intl

Note: This is a fork from http://npmjs.org/package/eslint-plugin-react-intl.

react-intl (2.0) specific linting rules for ESLint

Installation

Install ESLint either locally or globally.

$ npm install eslint

If you installed ESLint globally, you have to install React-intl plugin globally too. Otherwise, install it locally.

$ npm install eslint-plugin-react-intl

Configuration

Add plugins section and specify ESLint-plugin-React as a plugin.

{ "plugins": [ "@elastic/eslint-plugin-react-intl" ] }

If it is not already the case you must also configure ESLint to support JSX.

With ESLint 1.x.x:

{ "ecmaFeatures": { "jsx": true } }

With ESLint 2.x.x:

{ "parserOptions": { "ecmaFeatures": { "jsx": true } } }

List of supported rules

  • string-is-marked-for-translation: Catch strings that aren't marked for translation, e.g. contained in a component from react-intl 2.0.
  • is-valid-icu-message-syntax: Catch defaultMessage attributes that aren't valid ICU message syntax
  • no-inline-translations-with-formatmessage: Forbid calls to formatMessage() from using literal translations, because there are not picked up by babel-plugin-react-intl.

Thanks

License

ESLint-plugin-React-intl is licensed under the MIT License.

FAQs

Last updated on 14 Jun 2018

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc