flowise-embed-oc
Version:
Javascript library to display flowise chatbot on your website
15 lines (14 loc) • 542 B
JavaScript
module.exports = {
root: true,
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:solid/typescript'],
plugins: ['@typescript-eslint', 'solid'],
parser: '@typescript-eslint/parser',
ignorePatterns: ['**/*.md'],
rules: {
'@next/next/no-img-element': 'off',
'@next/next/no-html-link-for-pages': 'off',
'solid/no-innerhtml': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-explicit-any': 'off'
}
}