mirror of
https://github.com/jina-ai/node-DeepResearch.git
synced 2025-12-25 22:16:49 +08:00
22 lines
457 B
JavaScript
22 lines
457 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended'
|
|
],
|
|
env: {
|
|
node: true,
|
|
es6: true
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
sourceType: 'module'
|
|
},
|
|
rules: {
|
|
'no-console': ['error', { allow: ['log', 'error'] }],
|
|
'@typescript-eslint/no-explicit-any': 'off'
|
|
},
|
|
ignorePatterns: ["jina-ai/**/*"]
|
|
};
|