mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 18:08:27 +00:00
* Feat: v2 * feat: add chat functionality * First cut: integrations * Feat: add conversation API * Enhance conversation handling and memory management * Feat: added conversation --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@redplanethq/eslint-config/internal.js'],
|
|
parser: '@typescript-eslint/parser',
|
|
rules: {
|
|
'no-redeclare': 'off',
|
|
},
|
|
};
|