UNPKG

@emailjs/react-native

Version:

EmailJS helps to send emails directly from your code. Official EmailJS SDK for React Native

23 lines (21 loc) 504 B
import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; import stylistic from '@stylistic/eslint-plugin'; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommendedTypeChecked, { languageOptions: { parserOptions: { projectService: true, project: './tsconfig.json', }, }, plugins: { '@stylistic': stylistic, }, rules: { '@typescript-eslint/no-non-null-assertion': 'off', }, }, );