node-DeepResearch/.eslintrc.js
Yanlong Wang 8af35c6640
jina-ai: billing for saas service (#55)
* wip: jina billing

* wip

* fix: build issues

* ci: cd gh action

* fix: make ci happy
2025-02-11 18:27:15 +08:00

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/**/*"]
};