UNPKG

universal-emoji-parser

Version:

This tool allow parse unicode and emoji codes to html images using emojilib && Twemoji CDN

22 lines (20 loc) 658 B
import eslint from '@eslint/js' import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended' import tseslint from 'typescript-eslint' export default tseslint.config( { ignores: ['dist/**', 'node_modules/**', 'tmp/**', 'coverage/**', '.nyc_output/**', 'webpack.config.js'], }, eslint.configs.recommended, ...tseslint.configs.recommended, eslintPluginPrettierRecommended, { rules: { 'no-console': 'error', '@typescript-eslint/no-inferrable-types': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/ban-ts-comment': 'off', semi: ['error', 'never'], }, } )