xiamidaxia a98244c6a3
Feat/support react 16 (#221)
* chore: support react 16

* chore: support react 16
2025-05-13 06:16:00 +00:00

17 lines
393 B
JavaScript

const { defineConfig } = require('@flowgram.ai/eslint-config');
module.exports = defineConfig({
preset: 'web',
packageRoot: __dirname,
rules: {
'no-console': 'off',
'react/prop-types': 'off',
'react/no-deprecated': 'off',
},
settings: {
react: {
version: '16.8.6', // React version. "detect" automatically picks the version you have installed.
},
},
});