mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
* feat(demo): add demo playground * feat(fixed-layout): add multi-start and break node * fix: form-model updateFormValues with formatOnInit * feat(node-engine): formModel.values cloneDeep -> clone and add shllowEuqal checked * feat(demo): demo-fixed-layout-simple add flow-select * fix: use-node-render node undefined * docs: docs error * feat(fixed-layout): add input/output/multi-outputs/multi-inputs node
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
const { defineConfig } = require('@flowgram.ai/eslint-config');
|
|
|
|
module.exports = defineConfig({
|
|
preset: 'web',
|
|
packageRoot: __dirname,
|
|
rules: {
|
|
'no-console': 'off',
|
|
'react/prop-types': 'off',
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: 'detect', // 自动检测 React 版本
|
|
},
|
|
},
|
|
});
|