a728d30c99
* Refactor flattenSchema to simplify JSON schema for Google Generative AI API compatibility * Added unit test and github action * Add unit tests workflow and update test script in package.json * Downgrade eslint-plugin-jest to make min node version 18
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
plugins: [
|
|
'jest',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:jest/recommended',
|
|
],
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
'jest/globals': true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
overrides: [
|
|
],
|
|
ignorePatterns: [
|
|
],
|
|
globals: {
|
|
page: 'readonly',
|
|
},
|
|
rules: {
|
|
'no-unused-vars': ['error', { args: 'none' }],
|
|
'no-control-regex': 'off',
|
|
'no-constant-condition': ['error', { checkLoops: false }],
|
|
'require-yield': 'off',
|
|
'quotes': ['error', 'single'],
|
|
'semi': ['error', 'always'],
|
|
'indent': ['error', 4, { SwitchCase: 1, FunctionDeclaration: { parameters: 'first' } }],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'eol-last': ['error', 'always'],
|
|
'no-trailing-spaces': 'error',
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'space-infix-ops': 'error',
|
|
'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
|
|
'no-cond-assign': 'error',
|
|
},
|
|
settings: {
|
|
jest: {
|
|
version: '29.7.0',
|
|
},
|
|
},
|
|
};
|