test/packages/code-config/eslint/antd-pro.js

20 lines
430 B
JavaScript
Raw Permalink Normal View History

2024-05-07 16:24:43 +00:00
/** @type {import("eslint").Linter.Config} */
module.exports = {
parserOptions: {
// React启用jsx
ecmaFeatures: {
jsx: true,
},
},
globals: {
React: true,
JSX: true,
page: true,
REACT_APP_ENV: true,
},
extends: ['./react-lib'],
rules: {
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
},
};