ragflow/web/eslint.config.js
2023-12-14 13:49:56 +08:00

14 lines
330 B
JavaScript

const chuhoman = require('@chuhoman/eslint-config').default;
module.exports = chuhoman(
{},
{
rules: {
'no-console': 'off',
'prefer-regex-literals': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'no-undef': 'off',
'ts/type-annotation-spacing': ['error', {}],
},
},
);