# eslint-plugin-getsentry **Repository Path**: mirrors_getsentry/eslint-plugin-getsentry ## Basic Information - **Project Name**: eslint-plugin-getsentry - **Description**: Custom ESLint rules for development on Sentry - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ESLint-plugin-React =================== Custom ESLint rules for the [getsentry](//github.com/getsentry/) organization. Used for [Sentry](//github.com/getsentry/sentry) and other projects. # Installation ```sh $ npm install eslint-plugin-getsentry ``` # Configuration Add `plugins` section and specify ESLint-plugin-React as a plugin. ```json { "plugins": [ "getsentry" ] } ``` If it is not already the case you must also configure `ESLint` to support JSX. ```json { "ecmaFeatures": { "jsx": true } } ``` Finally, enable all of the rules that you would like to use. ```json { "rules": { "getsentry/jsx-needs-il8n": 1 } } ``` # List of supported rules **jsx-needs-il8n** Prevent usage of unwrapped string literals in JSX components. Bad: ```jsx